Skip to content

Commit

Permalink
Compatibility fix for actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
lmakarov committed Feb 9, 2024
1 parent 9e18f36 commit 49a40b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,10 @@ jobs:
- name: Store test results
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-${{ env.GIT_SHA7 }}-${{ env.VERSION_PREFIX }}${{ env.VERSION }}-${{ env.ARCH }}
path: ${{ github.workspace }}/test-results-*.txt
if-no-files-found: error
overwrite: true

push:
name: "Push: ${{ matrix.version }}/multi"
Expand Down Expand Up @@ -247,7 +249,8 @@ jobs:
name: Retrieve test results
uses: actions/download-artifact@v4
with:
name: test-results
pattern: test-results-${{ env.GIT_SHA7 }}-*
merge-multiple: true
-
# Generate persistent tags (edge, stable, release)
name: Docker image tags
Expand Down

0 comments on commit 49a40b2

Please sign in to comment.