-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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* |