Skip to content

Commit

Permalink
Fix artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Oct 1, 2024
1 parent 9ddd1b5 commit 2aa9ba3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
ORCHESTRATOR_ARTIFACT_NAME: orchestrator-orchestrator
ORCHESTRATOR_IMAGE_NAME: orchestrator-orchestrator
ORCHESTRATOR_ARTIFACT: orchestrator_orchestrator
UPLOAD_DIR: /tmp/uploaded_artifacts
DOWNLOAD_DIR: /tmp/downloaded_artifacts
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.IMAGE_NAME }}
images: ${{ env.ORCHESTRATOR_IMAGE_NAME }}
- name: Make upload dir
run: mkdir -p ${{ env.UPLOAD_DIR }}
- name: build
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Make Orchestrator artifact available to other jobs
uses: actions/upload-artifact@v3
with:
name: ${{ env.ORCHESTRATOR_ARTIFACT_NAME }}
name: ${{ env.ORCHESTRATOR_IMAGE_NAME }}
path: ${{ env.UPLOAD_DIR }}/${{ env.ORCHESTRATOR_ARTIFACT }}
retention-days: 1
- name: Move Docker cache
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
id: meta-orchestrator
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-orchestrator
images: ${{ env.ORCHESTRATOR_IMAGE_NAME }}
- name: docker hardhat metadata
id: meta-hardhat
uses: docker/metadata-action@v3
Expand All @@ -284,7 +284,7 @@ jobs:
- name: Get orchestrator artifact
uses: actions/download-artifact@v3
with:
name: ${{ env.ORCHESTRATOR_ARTIFACT_NAME }}
name: ${{ env.ORCHESTRATOR_IMAGE_NAME }}
path: ${{ env.DOWNLOAD_DIR }}
- name: Load orchestrator image
run: docker load --input ${{ env.DOWNLOAD_DIR }}/${{ env.ORCHESTRATOR_ARTIFACT }}
Expand Down

0 comments on commit 2aa9ba3

Please sign in to comment.