Skip to content

Commit

Permalink
re-create base tag in second job
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphall committed Sep 26, 2024
1 parent 4f1d0d8 commit 134abd0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,21 +206,30 @@ jobs:
- os: cuda_11_8_0
repo: testing
steps:
- id: base-tag
env:
SERIES: ${{ matrix.osg_series }}
REPO: ${{ matrix.repo }}
OS: ${{ matrix.os }}
run: |
echo "base_tag=${SERIES}-${OS}-${REPO}" >> ${GITHUB_OUTPUT}
- name: Download digests
uses: actions/download-artifact@v4
with:
path: /tmp/digests
pattern: digests-${{ steps.custom-image-name.outputs.base_tag }}-*
pattern: digests-${{ steps.base-tag.outputs.base_tag }}-*
merge-multiple: true

- name: Download tags
uses: actions/download-artifact@v4
with:
path: /tmp/tags
pattern: tags-${{ steps.custom-image-name.outputs.base_tag }}-*
pattern: tags-${{ steps.base-tag.outputs.base_tag }}-*
merge-multiple: true

- name: Show artifacts
working-directory: /tmp
run: |
find .
find digests
find tags

0 comments on commit 134abd0

Please sign in to comment.