Skip to content

build: build snapshots except when on a tag #6

build: build snapshots except when on a tag

build: build snapshots except when on a tag #6

Workflow file for this run

name: goreleaser
on:
workflow_dispatch:
pull_request:
push:
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Set Vars
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: echo "GORELEASER_FLAGS=--snapshot" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean ${{ env.GORELEASER_FLAGS }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}