We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9efc08b commit 19a98c4Copy full SHA for 19a98c4
.github/workflows/release.yaml
@@ -75,8 +75,10 @@ jobs:
75
- name: Build ghz-web
76
env:
77
CGO_ENABLED: 1
78
- GOOS: ${{ matrix.goos }}
79
- GOARCH: ${{ matrix.goarch }}
+ # various issues with GitHub actions, ARM and CGO
+ # disable for now
80
+ # GOOS: ${{ matrix.goos }}
81
+ # GOARCH: ${{ matrix.goarch }}
82
run: |
83
go build -ldflags="-s -w -X 'main.version=${{ github.ref }}' -X 'main.commit=${{ github.sha }}' -X 'main.date=${{ steps.current-time.outputs.time }}'" -o ./dist/${{ matrix.target }}/ ./cmd/ghz-web/...
84
0 commit comments