Skip to content

v1.0.9

v1.0.9 #20

Workflow file for this run

name: go-main
on:
release:
types: [created]
jobs:
release-jaroidfedi-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64]
exclude:
- goarch: "386"
goos: darwin
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.github_token }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.17.1.linux-amd64.tar.gz"
project_path: "./cmd/jaroidfedi"
binary_name: "jaroidfedi"
disable_packaging: true
overwrite: true
build_flags: "-tags forceposix"
release-jaroid-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64]
exclude:
- goarch: "386"
goos: darwin
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.github_token }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.17.1.linux-amd64.tar.gz"
project_path: "./cmd/jaroid"
binary_name: "jaroid"
disable_packaging: true
overwrite: true
build_flags: "-tags forceposix"