Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
newpanjing committed Apr 19, 2022
1 parent 9f4f49a commit 7318b4c
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,11 @@ 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 }}"
automatic_release_tag: "latest"
prerelease: false
title: "Release Build"
files: |
./dist/*

0 comments on commit 7318b4c

Please sign in to comment.