Skip to content

Commit

Permalink
ci(fix): provide unique name for upload artifact
Browse files Browse the repository at this point in the history
now errors in v4 as each run would clobber artifacts
  • Loading branch information
YOU54F committed Apr 23, 2024
1 parent 8ad7e25 commit 57f7753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
run: goveralls -coverprofile=coverage.txt -service=github -parallel
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}.zip
name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.go-version }}.zip
path: ~/.pact/plugins/**/plugin.log
if: ${{ always() }}

Expand Down

0 comments on commit 57f7753

Please sign in to comment.