Skip to content

Commit

Permalink
Correctly format the download job
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-o committed Oct 31, 2024
1 parent cea1fc0 commit 5eac784
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
build-and-upload:
name: Build Docker image
name: Build and Upload image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
23 changes: 13 additions & 10 deletions .github/workflows/hive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,19 @@ env:

jobs:
docker-image:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
run-id: ${{ github.event.workflow_run.id }}
name: ethereum_rust_image
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Load image
run: |
docker load --input /tmp/ethereum_rust_image.tar
docker image ls -a
name: Download Docker image
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
run-id: ${{ github.event.workflow_run.id }}
name: ethereum_rust_image
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Load image
run: |
docker load --input /tmp/ethereum_rust_image.tar
docker image ls -a
run-hive:
name: ${{ matrix.name }}
Expand Down

0 comments on commit 5eac784

Please sign in to comment.