Skip to content

Commit

Permalink
ci: fix goreleaser build (#4429)
Browse files Browse the repository at this point in the history
* Turn off cache for api
  • Loading branch information
ypoplavs authored Oct 4, 2023
1 parent 1c8ba85 commit f3600ad
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/docker-build-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,18 @@ jobs:
id: buildx
uses: docker/setup-buildx-action@v1

- name: Go Cache
uses: actions/cache@v2
# - name: Go Cache
# uses: actions/cache@v2
# with:
# path: |
# ~/go/pkg/mod
# ~/.cache/go-build
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-
- uses: actions/setup-go@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
go-version: '1.21.0'

- name: Login to DockerHub
uses: docker/login-action@v1
Expand Down

0 comments on commit f3600ad

Please sign in to comment.