fix artifacts step #250
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: Go | |
on: [push] | |
jobs: | |
Build-on-macOS: | |
runs-on: macos-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
env GOOS=darwin GOARCH=amd64 go build -o getnovel-amd64 -ldflags="-s -w" . | |
env GOOS=darwin GOARCH=arm64 go build -o getnovel-arm64 -ldflags="-s -w" . | |
mkdir darwin-universal | |
lipo -create -output darwin-universal/getnovel getnovel-amd64 getnovel-arm64 | |
cp -r preset darwin-universal/ | |
env GOOS=linux GOARCH=amd64 go build -o linux-amd64/getnovel -ldflags="-s -w" . | |
cp -r preset linux-amd64/ | |
env GOOS=linux GOARCH=arm go build -o linux-arm/getnovel -ldflags="-s -w" . | |
cp -r preset linux-arm/ | |
env GOOS=linux GOARCH=arm64 go build -o linux-arm64/getnovel -ldflags="-s -w" . | |
cp -r preset linux-arm64/ | |
env GOOS=windows GOARCH=amd64 go build -o windows-amd64/getnovel.exe -ldflags="-s -w" . | |
cp -r preset windows-amd64/ | |
env GOOS=freebsd GOARCH=amd64 go build -o freebsd-amd64/getnovel -ldflags="-s -w" . | |
cp -r preset freebsd-amd64/ | |
env GOOS=openbsd GOARCH=amd64 go build -o openbsd-amd64/getnovel -ldflags="-s -w" . | |
cp -r preset openbsd-amd64/ | |
env GOOS=netbsd GOARCH=amd64 go build -o netbsd-amd64/getnovel -ldflags="-s -w" . | |
cp -r preset netbsd-amd64/ | |
env GOOS=dragonfly GOARCH=amd64 go build -o dragonfly-amd64/getnovel -ldflags="-s -w" . | |
cp -r preset dragonfly-amd64/ | |
- name: Upload artifact getnovel-darwin-universal | |
uses: actions/[email protected] | |
with: | |
name: getnovel-darwin-universal | |
path: darwin-universal | |
- name: Upload artifact getnovel-linux-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-linux-amd64 | |
path: linux-amd64 | |
- name: Upload artifact getnovel-linux-arm | |
uses: actions/[email protected] | |
with: | |
name: getnovel-linux-arm | |
path: linux-arm | |
- name: Upload artifact getnovel-linux-arm64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-linux-arm64 | |
path: linux-arm64 | |
- name: Upload artifact getnovel-dragonfly-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-dragonfly-amd64 | |
path: dragonfly-amd64 | |
- name: Upload artifact getnovel-openbsd-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-openbsd-amd64 | |
path: openbsd-amd64 | |
- name: Upload artifact getnovel-netbsd-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-netbsd-amd64 | |
path: netbsd-amd64 | |
- name: Upload artifact getnovel-freebsd-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-freebsd-amd64 | |
- name: Upload artifact getnovel-windows-amd64 | |
uses: actions/[email protected] | |
with: | |
name: getnovel-windows-amd64 | |
path: windows-amd64 | |