debug #107
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: main | |
on: | |
push: | |
pull_request: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check the version | |
run: grep -qr "version = \"$(git tag --points-at HEAD | sed 's/^v//')\"" cmd | |
- run: git fetch --prune --unshallow | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --snapshot | |
env: | |
# Use a custom token instead of GITHUB_TOKEN for the homebrew tap | |
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} |