Skip to content

Commit

Permalink
Merge pull request #10 from m-mizutani/workflow/fix-release-action
Browse files Browse the repository at this point in the history
Update build to only include linux binary
  • Loading branch information
m-mizutani authored Jun 13, 2024
2 parents c7c13cb + 91cda11 commit f48a2a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/reelase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, darwin]
# keychain library is required for building darwin binary, however it's not available in ubuntu. Then we build only linux binary here.
goos: [linux]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f48a2a4

Please sign in to comment.