Skip to content

Release the rudy binary #9

Release the rudy binary

Release the rudy binary #9

Workflow file for this run

name: Release the rudy binary
on:
create:
tags: ["v*"]
jobs:
generate-artifacts:
name: Deploy to goreleaser
runs-on: ubuntu-latest
steps:
-
name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.25
-
name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}