Skip to content

Commit

Permalink
Add merge step to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vincejv authored Feb 11, 2025
1 parent d30062c commit 8ed3600
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest
id: export
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
Expand All @@ -79,6 +80,13 @@ jobs:
needs:
- build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: digests
pattern: digests-*
delete-merged: true
retention-days: 1
- name: Download digests
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 8ed3600

Please sign in to comment.