Skip to content

Commit

Permalink
πŸ› Fix building release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
0x46616c6b committed Apr 6, 2022
1 parent 756e686 commit e7dcb14
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ jobs:
with:
submodules: 'recursive'

- name: Setup go
uses: actions/setup-go@v3
with:
go-version: '1.17.x'

- name: Cache Go Dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Login to Docker Hub
uses: docker/login-action@v1.14.1
with:
Expand Down

0 comments on commit e7dcb14

Please sign in to comment.