We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ef9ea commit d7c962aCopy full SHA for d7c962a
1 file changed
.github/workflows/container.yml
@@ -58,6 +58,15 @@ jobs:
58
with:
59
username: ${{ secrets.DOCKERHUB_USERNAME }}
60
password: ${{ secrets.DOCKERHUB_TOKEN }}
61
+ - name: Set up Go modules cache
62
+ uses: actions/cache@v3
63
+ with:
64
+ path: |
65
+ ~/.cache/go-build
66
+ ~/go/pkg/mod
67
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
68
+ restore-keys: |
69
+ ${{ runner.os }}-go-
70
- name: Build and push Container image
71
uses: docker/build-push-action@v6
72
0 commit comments