-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from actions/sh/cgo_0
Explicitly set CGO_ENABLED=0
- Loading branch information
Showing
2 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
project_name: gh | ||
project_name: actions/actions-sync | ||
|
||
builds: | ||
- <<: &build_defaults | ||
binary: bin/actions-sync | ||
id: macos | ||
goos: [darwin] | ||
goarch: [amd64, arm64] | ||
- <<: *build_defaults | ||
id: linux | ||
goos: [linux] | ||
goarch: [amd64, arm64] | ||
- <<: *build_defaults | ||
id: windows | ||
goos: [windows] | ||
goarch: [amd64] | ||
- id: build | ||
goos: | ||
- linux | ||
- darwin | ||
- windows | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
binary: bin/actions-sync | ||
ignore: | ||
- goos: windows | ||
goarch: arm64 | ||
env: | ||
- CGO_ENABLED=0 | ||
release: | ||
github: | ||
owner: actions | ||
name: actions-sync | ||
# Create the release as a draft so it can be tested before being published | ||
# To test, go to the Actions tab and run the "Actions Sync E2E Sanity Test" workflow | ||
draft: true | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters