Skip to content

build(deps): bump actions/checkout from 3 to 4 #521

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #521

Workflow file for this run

name: release
on:
# Test that it works on pull_request; goreleaser goes into snapshot mode if not a tag.
pull_request:
push:
tags:
- v*
permissions:
# goreleaser writes to the releases api
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
env:
flags: ""
steps:
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
run: echo "flags=--snapshot" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true
- uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist ${{ env.flags }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}