Skip to content

Commit

Permalink
setup npm publish on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideaki Matsunami committed Dec 6, 2023
1 parent ac38d4a commit 0a50398
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: publish
on:
release:
types: [published]

jobs:
unit-tests-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: install dependencies
run: npm install
- name: build
run: npm run build
- name: publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 0a50398

Please sign in to comment.