chore: release macos amd64 (#116)

* chore: Release macos amd64

* fix: windows exe
This commit is contained in:
tbphp
2025-08-03 21:23:32 +08:00
committed by GitHub
parent 7e3797d2ad
commit b250b95d3c
3 changed files with 18 additions and 9 deletions

View File

@@ -30,17 +30,17 @@ jobs:
- name: Build Backend for amd64
run: |
go mod download
go build -ldflags "-s -w -X gpt-load/internal/version.Version=${{ github.ref_name }}" -o gpt-load
go build -ldflags "-s -w -X gpt-load/internal/version.Version=${{ github.ref_name }}" -o gpt-load-linux-amd64
- name: Build Backend for arm64
run: |
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w -X gpt-load/internal/version.Version=${{ github.ref_name }}" -o gpt-load-arm64
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags "-s -w -X gpt-load/internal/version.Version=${{ github.ref_name }}" -o gpt-load-linux-arm64
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
gpt-load
gpt-load-arm64
gpt-load-linux-amd64
gpt-load-linux-arm64
draft: true
generate_release_notes: true
env: