From 92fd960de56f85062b79bca210832215fae86cc5 Mon Sep 17 00:00:00 2001 From: David Bloss Date: Mon, 26 Feb 2024 07:41:50 -0800 Subject: [PATCH] update changie exec path in release workflow (#29) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 03d14d6..0360914 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,8 +50,8 @@ jobs: echo "Skip Changie..." else go install github.com/miniscruff/changie@latest - changie batch ${{ steps.version.outputs.RELEASE_VERSION }} - changie merge + $(go env GOPATH)/bin/changie batch ${{ steps.version.outputs.RELEASE_VERSION }} + $(go env GOPATH)/bin/changie merge git add . git commit -m "Cut Release '${{ steps.version.outputs.RELEASE_VERSION }}'" git push origin HEAD