Skip to content

Commit

Permalink
ci: fix npm release
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanosdev committed Aug 3, 2023
1 parent fde812e commit e88e627
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
run: pnpm build

- name: Pack @dfinity/response-verification NPM package
run: npm pack packages/ic-response-verification-wasm
working-directory: packages/ic-response-verification-wasm
run: npm pack --pack-destination ../../

- name: Generate release notes
run: cz changelog ${{ github.ref_name }} --file-name RELEASE_NOTES.md
Expand All @@ -58,7 +59,8 @@ jobs:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

- name: Release @dfinity/response-verification NPM package
run: npm publish packages/ic-response-verification-wasm --access public
working-directory: packages/ic-response-verification-wasm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down

0 comments on commit e88e627

Please sign in to comment.