Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
liorbond committed Sep 7, 2022
1 parent 900491c commit 9d7a9a5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build CLI
- uses: actions/setup-go@v2
with:
go-version: 1.19 # The Go version to download (if necessary) and use.
shell: bash
run: |
make build_cli
Expand All @@ -138,18 +141,18 @@ jobs:
name: secretcli-${{runner.os}}
path: secretcli-${{runner.os}}

x-build-cli:
MacOS-ARM64-CLI:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.19 # The Go version to download (if necessary) and use.
- name: Install xgo
run: |
go install github.com/crazy-max/xgo@latest
go install github.com/crazy-max/xgo@v0.17.0
xgo || true # check installation
- name: Build CLI
- name: Build MacOS CLI
shell: bash
run: |
make build_macos_arm64_cli
Expand Down

0 comments on commit 9d7a9a5

Please sign in to comment.