Skip to content

Commit

Permalink
Merge pull request #632 from synfinatic/fix-buildrelease
Browse files Browse the repository at this point in the history
install go v1.21 for build-release
  • Loading branch information
synfinatic authored Oct 18, 2023
2 parents 93e0ca3 + 322946c commit b3f6be7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ vars.GO_VERSION }}

- name: Run Makefile
run: |
make package
Expand All @@ -42,6 +47,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ vars.GO_VERSION }}

- name: Run Makefile
run: |
make darwin-arm64
Expand Down

0 comments on commit b3f6be7

Please sign in to comment.