Skip to content

ci: upgrade Go to 1.21 and update actions versions #26

ci: upgrade Go to 1.21 and update actions versions

ci: upgrade Go to 1.21 and update actions versions #26

Workflow file for this run

name: Build Binary
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
goreleaser:
runs-on: macos-14
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release -f .github/conf/.goreleaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}