Skip to content

Commit

Permalink
Add CI details to image artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Apr 4, 2023
1 parent 5c23553 commit 8852e2e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Save image
uses: actions/upload-artifact@v3
with:
name: docker-image-${{ matrix.image }}
name: docker-image-${{ matrix.image }}-${{ github.run_id }}-${{ github.sha }}
path: images/*
retention-days: 1

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Save image
uses: actions/upload-artifact@v3
with:
name: docker-image-${{ matrix.image }}-${{ matrix.app }}
name: docker-image-${{ matrix.image }}-${{ matrix.app }}-${{ github.run_id }}-${{ github.sha }}
path: images/*
retention-days: 1

Expand Down Expand Up @@ -146,17 +146,17 @@ jobs:
- name: Retrieve agent image
uses: actions/download-artifact@v3
with:
name: docker-image-agent
name: docker-image-agent-${{ github.run_id }}-${{ github.sha }}
path: images
- name: Retrieve runner image
uses: actions/download-artifact@v3
with:
name: docker-image-runner
name: docker-image-runner-${{ github.run_id }}-${{ github.sha }}
path: images
- name: Retrieve app image
uses: actions/download-artifact@v3
with:
name: docker-image-weblog-${{ matrix.app }}
name: docker-image-weblog-${{ matrix.app }}-${{ github.run_id }}-${{ github.sha }}
path: images
- name: Load images
run: |
Expand Down

0 comments on commit 8852e2e

Please sign in to comment.