diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 2690648..2a2885b 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -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 . \ No newline at end of file + find digests + find tags \ No newline at end of file