We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfac46 commit 79982e1Copy full SHA for 79982e1
.github/workflows/build.yml
@@ -50,10 +50,11 @@ jobs:
50
run: go test -failfast -v -timeout=300s -coverprofile=profile.cov ./...
51
52
- name: Upload coverage profile
53
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v4
54
with:
55
- name: coverage-profile
+ name: coverage-profile-${{ github.run_id }}
56
path: profile.cov
57
+ retention-days: 1
58
59
- name: Run GoReleaser
60
uses: goreleaser/goreleaser-action@v6
@@ -69,9 +70,9 @@ jobs:
69
70
steps:
71
72
- name: Download coverage profile
- uses: actions/download-artifact@v5
73
+ uses: actions/download-artifact@v4
74
75
76
77
- name: Send coverage to Coveralls
78
uses: coverallsapp/github-action@v2
0 commit comments