Skip to content

github action using macos & windows vm #10

github action using macos & windows vm

github action using macos & windows vm #10

Workflow file for this run

on:
push:
# run only against tags
tags:
- '*'
jobs:
linux:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.0'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --clean --config .goreleaser.yml --id linux
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}
mac:
runs-on: macos-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.0'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --clean --config .goreleaser.yml --id darwin
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}
windows:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.0'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --clean --config .goreleaser.yml --id windows
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}