12345678910111213141516171819202122232425 |
- name: Release
- on:
- push:
- tags:
- - v*
- permissions:
- contents: write
- jobs:
- goreleaser:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - uses: actions/setup-go@v3
- with:
- go-version: stable
- - uses: goreleaser/goreleaser-action@v4
- with:
- args: release --rm-dist
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|