Skip to content

Commit

Permalink
feat: add npm-package workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
h-enk committed Mar 18, 2021
1 parent f3c7beb commit be4b68c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/npm-package.yml
Original file line number Diff line number Diff line change
@@ -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 }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "doks",
"name": "@hyas/doks",
"version": "0.1.6",
"private": true,
"hugo-bin": {
Expand Down

0 comments on commit be4b68c

Please sign in to comment.