Skip to content

Commit

Permalink
bumped gh actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pushrbx authored May 26, 2024
1 parent c425c32 commit c44949e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/container-image-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,14 @@ jobs:
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Transform platform value
id: platform_transform
run: echo "platform=$(echo '${{ matrix.platform }}' | sed 's/\//_/g')" >> $GITHUB_OUTPUT

- name: Upload digest
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: digests
name: digests-${{ steps.platform_transform.outputs.platform }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand All @@ -101,9 +105,10 @@ jobs:
- build-app-image
steps:
- name: Download digests
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: digests
name: digests-*
merge-multiple: true
path: /tmp/digests

- name: Set up Docker Buildx
Expand Down

0 comments on commit c44949e

Please sign in to comment.