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 60a3a36 commit 12cc48eCopy full SHA for 12cc48e
.github/workflows/release.yaml
@@ -19,21 +19,11 @@ jobs:
19
name: Build and publish
20
runs-on: ubuntu-latest
21
steps:
22
- - uses: actions/checkout@v4
+ - name: Checkout
23
+ uses: actions/checkout@v4
24
- - name: Echo Go Cache Paths
25
- id: go-cache-paths
26
- run: |
27
- echo "GOCACHE=$(go env GOCACHE)" >> ${{ runner.os == 'Windows' && '$env:' || '$' }}GITHUB_OUTPUT
28
- echo "GOMODCACHE=$(go env GOMODCACHE)" >> ${{ runner.os == 'Windows' && '$env:' || '$' }}GITHUB_OUTPUT
29
-
30
- - name: Go Build Cache
31
- uses: actions/cache@v3
32
- with:
33
- path: ${{ steps.go-cache-paths.outputs.GOCACHE }}
34
- key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.**', '**.go') }}
35
36
- - uses: actions/setup-go@v5
+ - name: Setup go
+ uses: actions/setup-go@v5
37
with:
38
go-version: "~1.22"
39
0 commit comments