Merge pull request #7 from deggja/feat/versioning #1
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: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-release: | |
name: Build and Release | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21' | |
- name: Bump version and tag | |
id: bump_version | |
run: | | |
chmod +x .github/scripts/bump_version.sh | |
.github/scripts/bump_version.sh | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
version: latest | |
args: release --clean --debug | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |