Skip to content

Commit

Permalink
test3_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaariel91 authored Jul 6, 2024
1 parent 029918f commit b69ff5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,19 @@ jobs:
- name: Extract binary from Docker image
run: |
container_id=$(docker create ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_BASE }}:pr-3)
docker cp $container_id:/usr/bin/cpu_air_prover /bin/cpu_air_prover
docker cp $container_id:/usr/bin/cpu_air_verifier /bin/cpu_air_verifier
docker cp $container_id:/usr/bin/cpu_air_prover /tmp/cpu_air_prover
docker cp $container_id:/usr/bin/cpu_air_verifier /tmp/cpu_air_verifier
docker rm $container_id
- name: Verify file existence#1
run: pwd

- name: Verify file existence#2
run: ls -l /bin/cpu*
run: ls -l /tmp/cpu*

- name: Upload files to a GitHub release
uses: svenstaro/[email protected]
with:
file_glob: true
tag: ${{ github.ref }}
file: /bin/cpu_air*
file: /tmp/cpu_air*

0 comments on commit b69ff5c

Please sign in to comment.