Skip to content

Commit

Permalink
Add continue-on-error true to npm publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajiaji committed Nov 6, 2024
1 parent 257a4e5 commit 7c0cd57
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,46 +40,55 @@ jobs:
npm install -g esbuild
deno task npm
- name: Publish @hpke/common to npm
continue-on-error: true
working-directory: ./npm/packages/common
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/core to npm
continue-on-error: true
working-directory: ./npm/packages/core
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/chacha20poly1305 to npm
continue-on-error: true
working-directory: ./npm/packages/chacha20poly1305
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/dhkem-x25519 to npm
continue-on-error: true
working-directory: ./npm/packages/dhkem-x25519
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/dhkem-x448 to npm
continue-on-error: true
working-directory: ./npm/packages/dhkem-x448
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/hybridkem-x25519-kyber768 to npm
continue-on-error: true
working-directory: ./npm/packages/hybridkem-x25519-kyber768
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/dhkem-secp256k1 to npm
continue-on-error: true
working-directory: ./npm/packages/dhkem-secp256k1
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish @hpke/hybridkem-x-wing to npm
continue-on-error: true
working-directory: ./npm/packages/hybridkem-x-wing
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publish hpke-js to npm
continue-on-error: true
working-directory: ./npm/packages/hpke-js
run: npm publish --provenance
env:
Expand Down

0 comments on commit 7c0cd57

Please sign in to comment.