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 7178cfa commit fca0bf0Copy full SHA for fca0bf0
.github/workflows/go.yml
@@ -13,13 +13,23 @@ jobs:
13
id: go
14
15
- name: Check out code into the Go module directory
16
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
17
+ with:
18
+ fetch-depth: 0
19
20
- name: CI Tasks
21
run: make ci
22
23
- name: Coveralls
24
uses: coverallsapp/github-action@v1.0.1
25
with:
- github-token: ${{ secrets.github_token }}
- path-to-lcov: coverage.lcov
26
+ github-token: ${{ secrets.GITHUB_TOKEN }}
27
+ path-to-lcov: coverage.lcov
28
+ -
29
+ name: Run GoReleaser
30
+ uses: goreleaser/goreleaser-action@v2
31
32
+ version: latest
33
+ args: release --rm-dist
34
+ env:
35
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments