Skip to content

feat(deps): bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.21.0 #66

feat(deps): bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.21.0

feat(deps): bump github.com/hashicorp/hcl/v2 from 2.20.1 to 2.21.0 #66

Workflow file for this run

name: goreleaser
on:
push:
tags:
- '*'
pull_request:
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
# if tag release
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
if: startsWith(github.ref, 'refs/tags/v')
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# if no tag test release build
-
name: Run GoReleaser skip publishing
uses: goreleaser/goreleaser-action@v6
if: "!startsWith(github.ref, 'refs/tags/v')"
with:
version: latest
args: release --skip=publish --skip=validate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}