Merge branch 'main' into f/henriklundstrom/fix-required-checks-minus-… #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
tags: | |
- v*.*.* | |
workflow_dispatch: | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
submodules: true | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 | |
with: | |
go-version-file: go.mod | |
- name: Run GoReleaser for stable release | |
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6 | |
if: (!contains(github.ref, 'pre')) | |
with: | |
# You can pass flags to goreleaser via GORELEASER_ARGS | |
# --clean will save you deleting the dist dir | |
args: release --clean | |
distribution: goreleaser # or 'goreleaser-pro' | |
version: "~> v2" # or 'latest', 'nightly', semver | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate changelog for pre release | |
if: contains(github.ref, 'pre') | |
id: changelog | |
run: | | |
echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
gh api repos/$GITHUB_REPOSITORY/releases/generate-notes \ | |
-f tag_name="${GITHUB_REF#refs/tags/}" \ | |
-f target_commitish=main \ | |
-q .body > tmp-CHANGELOG.md | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |