Skip to content

Commit

Permalink
Fix CI build (extract image id) (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli authored Aug 13, 2024
1 parent 24f4b9e commit a2e68d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ jobs:
run: pnpm i

- name: Build Cartesi Machine image
run: pnpm exec cartesi build --from-image "${{ steps.build_machine.outputs.imageid }}"
run: |
pnpm exec cartesi build --from-image \
"$(echo ${{ steps.build_machine.outputs.digest }} | sed 's/^[^:]*://')"
- name: Build Cartesi Node image
id: build_node
Expand Down

0 comments on commit a2e68d0

Please sign in to comment.