Skip to content

Merge pull request #1627 from cpunion/winget-pkg-rename #49

Merge pull request #1627 from cpunion/winget-pkg-rename

Merge pull request #1627 from cpunion/winget-pkg-rename #49

Workflow file for this run

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