chore: updated release workflow to clean dirty state #16
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: Run Go Mod Tidy | |
run: | | |
cd backend | |
go mod tidy | |
- 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 }} |