Skip to content

Commit

Permalink
fix: ci publish not finding script (#58)
Browse files Browse the repository at this point in the history
# Motivation

Fix publish CI
[issue](https://github.com/dfinity/verifiable-credentials-sdk/actions/runs/10789761112/job/29923443711)

# Changes

- The script `publish-npm.sh` find place in a parent folder now that we
release from `dist`, so `../` instead of `./`
  • Loading branch information
peterpeterparker authored Sep 10, 2024
1 parent 197fc4d commit 922a047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:

- name: Publish
working-directory: ${{env.dist-directory}}
run: ./scripts/publish-npm.sh
run: ../scripts/publish-npm.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit 922a047

Please sign in to comment.