Edit link page #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Build | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
Compile: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- goarch: amd64 | |
goos: linux | |
- goarch: amd64 | |
goos: darwin | |
- goarch: amd64 | |
goos: windows | |
- goarch: arm64 | |
goos: linux | |
- goarch: arm64 | |
goos: darwin | |
- goarch: arm64 | |
goos: windows | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setting up Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.19.0' | |
- name: Build | |
run: | | |
go mod tidy | |
go build -tags=go_json -o goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }} -v . | |
env: | |
CGO_ENABLED: 0 | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.goarch }} | |
- name: Handle for Windows Build | |
if: ${{ matrix.goos == 'windows' }} | |
run: mv goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }} goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }}.exe | |
- name: Upload a Non-Windows Build Artifact | |
uses: actions/upload-artifact@v4 | |
if: ${{ matrix.goos != 'windows' }} | |
with: | |
name: goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }} | |
path: goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }} | |
- name: Upload a Windows Build Artifact | |
uses: actions/upload-artifact@v4 | |
if: ${{ matrix.goos == 'windows' }} | |
with: | |
name: goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }}.exe | |
path: goyoubbs-${{ matrix.goos }}-${{ matrix.goarch }}.exe | |