Skip to content

chore: update goreleaser to v2 (#93) #101

chore: update goreleaser to v2 (#93)

chore: update goreleaser to v2 (#93) #101

Workflow file for this run

name: goreleaser
on:
push:
branches: [main]
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.22"
- name: Configure Git
run: |
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "[email protected]"
- name: Install ccv
run: go install github.com/smlx/ccv/cmd/ccv@latest
- name: Bump tag if necessary
id: tag
run: |
if [ -z $(git tag -l $(ccv)) ]; then
git tag $(ccv)
git push --tags
echo "new=true" >> $GITHUB_OUTPUT
fi
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
if: ${{ steps.tag.outputs.new == "true" }}

Check failure on line 41 in .github/workflows/goreleaser.yml

View workflow run for this annotation

GitHub Actions / goreleaser

Invalid workflow file

The workflow is not valid. .github/workflows/goreleaser.yml (Line: 41, Col: 13): Unexpected symbol: '"true"'. Located at position 26 within expression: steps.tag.outputs.new == "true"
with:
distribution: goreleaser
version: 'v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}
TAP_GITHUB_TOKEN: ${{ secrets.TAP_GITHUB_TOKEN }}