Skip to content

Commit

Permalink
build: replace standard-version wih release-it
Browse files Browse the repository at this point in the history
  • Loading branch information
naimo84 committed Dec 17, 2021
1 parent 16747a1 commit 877387c
Show file tree
Hide file tree
Showing 4 changed files with 15,221 additions and 11,426 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
Loading

0 comments on commit 877387c

Please sign in to comment.