Skip to content

Commit

Permalink
chore: try to fix broken amd64 executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt committed Jun 28, 2024
1 parent 731c74a commit 98ceed0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
with:
path: build-artifacts/templates.zip
key: templates-${{ hashFiles('templates/**') }}
- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
with:
go-version: '^1.17.x'
- run: GOOS=linux GOARCH=amd64 go build -o build-artifacts/vistecture-linux-amd64 vistecture.go
- run: GOOS=linux GOARCH=arm64 go build -o build-artifacts/vistecture-linux-arm64 vistecture.go
- run: GOOS=windows go build -o build-artifacts/vistecture.exe vistecture.go
- run: GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o build-artifacts/vistecture-linux-amd64 vistecture.go
- run: GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -o build-artifacts/vistecture-linux-arm64 vistecture.go
- run: GOOS=windows CGO_ENABLED=0 go build -o build-artifacts/vistecture.exe vistecture.go
- uses: actions/upload-artifact@v4
with:
name: binaries
Expand Down

0 comments on commit 98ceed0

Please sign in to comment.