File tree Expand file tree Collapse file tree 2 files changed +25
-15
lines changed Expand file tree Collapse file tree 2 files changed +25
-15
lines changed Original file line number Diff line number Diff line change 1
- project_name : gh
1
+ project_name : actions/actions-sync
2
2
3
3
builds :
4
- - << : &build_defaults
5
- binary : bin/actions-sync
6
- id : macos
7
- goos : [darwin]
8
- goarch : [amd64, arm64]
9
- - << : *build_defaults
10
- id : linux
11
- goos : [linux]
12
- goarch : [amd64, arm64]
13
- - << : *build_defaults
14
- id : windows
15
- goos : [windows]
16
- goarch : [amd64]
4
+ - id : build
5
+ goos :
6
+ - linux
7
+ - darwin
8
+ - windows
9
+ goarch :
10
+ - amd64
11
+ - arm64
12
+ binary : bin/actions-sync
13
+ ignore :
14
+ - goos : windows
15
+ goarch : arm64
16
+ env :
17
+ - CGO_ENABLED=0
18
+ release :
19
+ github :
20
+ owner : actions
21
+ name : actions-sync
22
+ # Create the release as a draft so it can be tested before being published
23
+ # To test, go to the Actions tab and run the "Actions Sync E2E Sanity Test" workflow
24
+ draft : true
25
+
26
+
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ test -z "${DEBUG:-}" || {
7
7
set -x
8
8
}
9
9
10
- go build -o bin/actions-sync main.go
10
+ CGO_ENABLED=0 go build -o bin/actions-sync main.go
You can’t perform that action at this time.
0 commit comments