Merge pull request #1627 from cpunion/winget-pkg-rename #49
Workflow file for this run
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 Build | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout tag | |
run: | | |
git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
tag_name="${GITHUB_REF##*/}" | |
echo Current tag: $tag_name | |
git checkout $tag_name | |
echo "TAG_NAME=${tag_name}" >> $GITHUB_ENV | |
- name: Check VERSION consistency | |
run: | | |
tag=$(git describe --tags --dirty) | |
version=$(cat VERSION) | |
if [ "$tag" != "$version" ]; then | |
echo "VERSION file is not consistent with tag name" | |
echo "VERSION: $version" | |
echo "TAG: $tag" | |
exit 1 | |
fi | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install goreleaser | |
run: | | |
go install github.com/goreleaser/goreleaser@latest | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WINGET_PKGS_PRIVATE_KEY: ${{ secrets.WINGET_PKGS_PRIVATE_KEY }} | |
run: goreleaser release -p 4 |