Skip to content

v1.0.6 - instances listing, no more os.Exit #8

v1.0.6 - instances listing, no more os.Exit

v1.0.6 - instances listing, no more os.Exit #8

Workflow file for this run

on:
release:
types: [created]
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release Cobalt Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "cobalt-${{ matrix.goos }}-${{ matrix.goarch }}"
ldflags: -s -w
pre_command: "go install github.com/tc-hib/go-winres@latest && go-winres make && go test -v"
asset_name: "cobalt-${{ matrix.goos }}-${{ matrix.goarch }}"
overwrite: true