Skip to content

Specify CCompiler binaries for each OS and Arch (#64) #4

Specify CCompiler binaries for each OS and Arch (#64)

Specify CCompiler binaries for each OS and Arch (#64) #4

Workflow file for this run

name: goreleaser
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checking out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install compiling essentials
run: |
sudo apt-get install -y gcc-multilib
- name: Setting up Go
uses: actions/setup-go@v4
- name: Running GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}