Skip to content

Commit

Permalink
Fix/archs for action (#119)
Browse files Browse the repository at this point in the history
* fix version

* fixes archs
  • Loading branch information
steezeburger authored Jun 20, 2024
1 parent 458c645 commit 9ec0661
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/nightly-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ permissions:
jobs:
create-nightly-release:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, darwin ]
goarch: [ amd64, arm64 ]
exclude:
- goarch: "arm64"
goos: "linux"
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -43,8 +50,8 @@ jobs:
uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux,darwin
goarch: amd64,arm64
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
ldflags: >
-s -w -X github.com/astria/astria-cli-go/cmd.version=${{ env.TAG_NAME }}
project_path: "./"
Expand Down

0 comments on commit 9ec0661

Please sign in to comment.