Skip to content

gorelease to ignore arm as it fails in github actions #31

gorelease to ignore arm as it fails in github actions

gorelease to ignore arm as it fails in github actions #31

Workflow file for this run

name: goreleaser
on:
push:
tags: ['*']
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: 1.20
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}