Skip to content

Commit

Permalink
darwin i386 no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
nodauf authored May 21, 2021
1 parent 668e07f commit 91a6203
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/gorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, darwin]
goos: [linux]
goarch: [386, amd64]
steps:
- uses: actions/checkout@v2
Expand All @@ -79,3 +79,23 @@ jobs:
project_path: "./src"
ldflags: "-s -w"
binary_name: swego-without-embedded

releases-matrix-darwin-withoutembedded:
name: Release Go Binary for darwin without any embedded files
runs-on: ubuntu-latest
strategy:
matrix:
goos: [darwin]
goarch: [amd64]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/[email protected]
with:
pre_command: "bash ./src/rice-assets.sh"
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.16
project_path: "./src"
ldflags: "-s -w"
binary_name: swego-without-embedded

0 comments on commit 91a6203

Please sign in to comment.