Skip to content

Commit

Permalink
release all build.
Browse files Browse the repository at this point in the history
  • Loading branch information
newpanjing committed Apr 19, 2022
1 parent 7318b4c commit 00775ad
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@ jobs:
- name: Build-Macos
run: GOOS=darwin GOARCH=amd64 go build -o ./dist/macos_amd64

- name: Build-Macos-Arm64
run: GOOS=darwin GOARCH=arm64 go build -o ./dist/macos_apple_silicon

- name: Build-Windows-x64
run: GOOS=windows GOARCH=amd64 go build -o ./dist/windows_amd64.exe

- name: Build-Windows-AMR64
run: GOOS=windows GOARCH=arm64 go build -o ./dist/windows_arm64.exe

- name: Build-Linux-x64
run: GOOS=linux GOARCH=amd64 go build -o ./dist/linux_amd64

- name: Build-Linux-AMR64
run: GOOS=linux GOARCH=arm64 go build -o ./dist/linux_arm64

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit 00775ad

Please sign in to comment.