Skip to content

Commit

Permalink
chore: digest and meta should have json ending
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Apr 4, 2024
1 parent d6b85b0 commit 09c83a6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: 📤 Upload meta bake definition
uses: actions/upload-artifact@v4
with:
name: bake-meta-${{ env.PLATFORM_CACHE_TAG }}
name: bake-meta-${{ env.PLATFORM_CACHE_TAG }}.json
path: /tmp/bake-meta-*.json
if-no-files-found: error
retention-days: 1
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: 📤 Upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ env.PLATFORM_CACHE_TAG }}
name: digests-${{ env.PLATFORM_CACHE_TAG }}.json
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
Expand All @@ -156,9 +156,12 @@ jobs:
pattern: digests-*
path: /tmp/digests/*

- name: Print all download artifact files
- name: Print downloaded bake meta files
run: |
ls -la /tmp
- name: Print downloaded digests
run: |
ls -la /tmp/digests
- name: 🔑 Login to docker-hub
Expand Down

0 comments on commit 09c83a6

Please sign in to comment.