Skip to content

Commit

Permalink
build: add auto-deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dvlden committed Jan 23, 2023
1 parent 2b5e6a2 commit f481998
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish to NPM

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/[email protected]
- run: pnpm i
- run: pnpm run test
- run: pnpm run build
- run: pnpm publish --no-git-checks --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f481998

Please sign in to comment.