We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec1475b commit 2433ef3Copy full SHA for 2433ef3
2 files changed
.github/workflows/ci.yaml
@@ -10,6 +10,15 @@ jobs:
10
release:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Cache Go modules
14
+ uses: actions/cache@v4
15
+ with:
16
+ path: |
17
+ ~/.cache/go-build
18
+ ~/go/pkg/mod
19
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
20
+ restore-keys: |
21
+ ${{ runner.os }}-go-
22
- name: Checkout code
23
uses: actions/checkout@v5
24
.github/workflows/release.yml
@@ -9,6 +9,15 @@ jobs:
9
0 commit comments