1
0

simplified workflow

This commit is contained in:
2022-06-26 00:37:33 +02:00
parent 70209ef267
commit efa501b4fc

View File

@@ -5,7 +5,7 @@ on:
types: [published] types: [published]
jobs: jobs:
publish-npm: publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@@ -13,20 +13,19 @@ jobs:
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- name: Build & Publish - name: Install dependencies
run: npm ci && npm run build && npm publish --tag pre --access public run: npm ci
- name: Build
run: npm run build
- name: Publish to npmjs.org
env: env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
run: npm publish --tag pre --access public
publish-gpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
node-version: 16 node-version: 16
registry-url: https://npm.pkg.github.com/ registry-url: https://npm.pkg.github.com/
- name: Build & Publish - name: Publish to npm.pkg.github.com
run: npm ci && npm run build && npm publish --tag pre --access public
env: env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: npm publish --tag pre --access public