Skip to content

Commit

Permalink
ci: Fix cache keys
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock committed Dec 12, 2023
1 parent ad05bb1 commit 8443076
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-build-tag-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-${{ matrix.pythonStandaloneVersion }}-${{ matrix.pythonVersion }}-build-tag-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-build-tag-
${{ runner.os }}-${{ matrix.pythonStandaloneVersion }}-${{ matrix.pythonVersion }}-build-tag-
- name: build-tag
run: |
git config --global user.email "[email protected]"
Expand Down Expand Up @@ -100,9 +100,9 @@ jobs:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-tests-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-${{ matrix.pythonStandaloneVersion }}-${{ matrix.pythonVersion }}-tests-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-tests-
${{ runner.os }}-${{ matrix.pythonStandaloneVersion }}-${{ matrix.pythonVersion }}-tests-
- uses: actions/download-artifact@v3
with:
name: workdir-${{ matrix.pythonStandaloneVersion }} ${{ matrix.pythonVersion }}
Expand Down

0 comments on commit 8443076

Please sign in to comment.