Skip to content

Commit

Permalink
Merge pull request #51 from syfxlin/develop
Browse files Browse the repository at this point in the history
fix(ci): Loss of Linux executable files
  • Loading branch information
syfxlin authored Jan 13, 2024
2 parents 92c5f22 + 8375230 commit 9758f1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
run: |
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/depker.win.amd64.exe bin/depker.go
CGO_ENABLED=0 GOOS=windows GOARCH=arm64 go build -o bin/depker.win.arm64.exe bin/depker.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/depker.win.amd64 bin/depker.go
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/depker.win.arm64 bin/depker.go
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/depker.linux.amd64 bin/depker.go
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o bin/depker.linux.arm64 bin/depker.go
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o bin/depker.mac.amd64 bin/depker.go
CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o bin/depker.mac.arm64 bin/depker.go
- name: Publish
Expand Down

0 comments on commit 9758f1b

Please sign in to comment.