Skip to content

Commit f0bf5d0

Browse files
authored
fix Wasm release (#739)
1 parent 360cc3f commit f0bf5d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/publish/publish-stronghold-nodejs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
- name: Install dependencies
2323
shell: sh
2424
working-directory: bindings/stronghold-nodejs
25-
run: npm ci --ignore-scripts
25+
run: npm ci --ignore-scripts --legacy-peer-deps
2626

2727
- name: Download all artifacts
2828
uses: actions/download-artifact@v2

.github/workflows/wasm-automatic-release-and-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
release-wasm:
3434
if: ${{ needs.call-create-release-workflow.outputs.is-release }}
3535
runs-on: ubuntu-latest
36-
needs: build-wasm
36+
needs: [call-create-release-workflow, build-wasm]
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v2
@@ -58,7 +58,7 @@ jobs:
5858
release-stronghold-nodejs:
5959
if: ${{ needs.call-create-release-workflow.outputs.is-release }}
6060
runs-on: ubuntu-latest
61-
needs: build-stronghold-nodejs
61+
needs: [call-create-release-workflow, build-stronghold-nodejs]
6262
steps:
6363
- name: Checkout
6464
uses: actions/checkout@v2

0 commit comments

Comments
 (0)