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 223464b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,9 @@ jobs:
- name: Store test results
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-${{ env.GIT_SHA7 }}
path: ${{ github.workspace }}/test-results-*.txt
overwrite: true

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

0 comments on commit 223464b

Please sign in to comment.