From 837523069a253dd7497f89ee1300c0d67e8ceb0b Mon Sep 17 00:00:00 2001 From: syfxlin Date: Sat, 13 Jan 2024 16:45:46 +0800 Subject: [PATCH] fix(ci): Loss of Linux executable files --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9358985..cee8223 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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