ci: update github action

This commit is contained in:
chenshenhai 2023-10-15 11:39:18 +08:00
parent 85e87ab2d9
commit c1369efe03

22
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm run test
- run: npm run build
- run: cd packages/types/
- run: npm publish
- run: cd ../util/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}