Skip to content

Commit

Permalink
fix releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-k committed Oct 23, 2021
1 parent ab6a8a5 commit c3d3eb4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ jobs:
TAGGED_VERSION: ${{github.event.release.tag_name}}
steps:
- uses: actions/checkout@v2
- name: Set up Go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Go releaser
run: |
make release

0 comments on commit c3d3eb4

Please sign in to comment.