1
0

update workflow

This commit is contained in:
2022-11-28 20:33:18 +01:00
parent eeb1b69e62
commit 4f169120de

30
.github/workflows/publish-pre.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
name: Publish (pre)
on:
release:
types: [published]
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/
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish to npmjs
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: npm publish --tag pre --access public
- uses: actions/setup-node@v1
with:
registry-url: https://npm.pkg.github.com/
- name: Publish to GPR
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: npm publish --tag pre --access public