Skip to content

v0.3.0

v0.3.0 #6

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Matthew Nickson <mnickson@sidingsmedia.com>
# SPDX-License-Identifier: CC0-1.0
name: Go
on:
release:
types:
- created
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
# build and publish in parallel: linux/amd64
goos: [linux, freebsd, darwin]
goarch: [amd64, arm, arm64, 386]
exclude:
- goarch: 386
goos: darwin
- goarch: arm
goos: darwin
- goarch: arm64
goos: darwin
goarm:
- 7
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.19.6.linux-amd64.tar.gz"
binary_name: "messaging"
ldflags: "-s -w"