feat: add npm-package workflow
This commit is contained in:
parent
f3c7beb5ad
commit
be4b68c3d8
|
@ -0,0 +1,17 @@
|
|||
name: Npm Package
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '14.x'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
- run: npm ci
|
||||
- run: npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "doks",
|
||||
"name": "@hyas/doks",
|
||||
"version": "0.1.6",
|
||||
"private": true,
|
||||
"hugo-bin": {
|
||||
|
|
Loading…
Reference in New Issue