Skip to content

Commit

Permalink
Fix dockerfile path in workflow 3
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Oct 1, 2024
1 parent 6914030 commit 9ddd1b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
ORCHESTRATOR_ARTIFACT_NAME: orchestrator-orchestrator
ORCHESTRATOR_ARTIFACT: orchestrator_orchestrator
UPLOAD_DIR: /tmp/uploaded_artifacts
DOWNLOAD_DIR: /tmp/downloaded_artifacts
Expand Down Expand Up @@ -59,7 +60,7 @@ jobs:
- name: Make Orchestrator artifact available to other jobs
uses: actions/upload-artifact@v3
with:
name: ${{ env.IMAGE_NAME }}
name: ${{ env.ORCHESTRATOR_ARTIFACT_NAME }}
path: ${{ env.UPLOAD_DIR }}/${{ env.ORCHESTRATOR_ARTIFACT }}
retention-days: 1
- name: Move Docker cache
Expand Down Expand Up @@ -283,7 +284,7 @@ jobs:
- name: Get orchestrator artifact
uses: actions/download-artifact@v3
with:
name: ${{ env.IMAGE_NAME }}
name: ${{ env.ORCHESTRATOR_ARTIFACT_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 9ddd1b5

Please sign in to comment.