Bump goreleaser/goreleaser-action from 4 to 5 #20
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: goreleaser | |
on: | |
push: | |
tags: | |
- 'v*' | |
pull_request: | |
paths: | |
- .github/workflows/goreleaser.yml | |
- .goreleaser.yaml | |
permissions: | |
contents: write | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: v1.19 | |
- name: Delete non-semver tags | |
run: 'git tag -d $(git tag -l | grep -v "^v")' | |
- name: Set LDFLAGS | |
run: echo LDFLAGS="$(make ldflags)" >> $GITHUB_ENV | |
- name: Run GoReleaser on tag | |
if: github.event_name != 'pull_request' | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --timeout 60m | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run GoReleaser on pull request | |
if: github.event_name == 'pull_request' | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --timeout 60m --snapshot | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cytopia/[email protected] | |
if: ${{ always() }} | |
with: | |
name: binaries | |
path: dist/*.tar.gz |