Skip to content

chore: fix svu install in github action #83

chore: fix svu install in github action

chore: fix svu install in github action #83

Workflow file for this run

name: goreleaser
on:
push:
paths-ignore:
- README.md
- env.sample
branches:
- main
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
- name: Bump version and push tag
uses: charlesthomas/github-action-svu@v1.0.6+2.2.0
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}