Skip to content

Commit

Permalink
ensure artifacts folder exists when deploying rust bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-if committed Oct 25, 2024
1 parent 80f304e commit 564bbce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-npm-ironfish-rust-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ jobs:
run: ls -R .
shell: bash

- name: Verify artifacts exist
run: |
if [ -z "$(ls -A './artifacts')" ]; then
echo "artifacts folder was empty. ironfish-rust-nodejs artifacts were not uploaded correctly."
exit 1
fi
- name: Move and publish artifacts
run: yarn artifacts

Expand Down

0 comments on commit 564bbce

Please sign in to comment.