From 38c66eba30be639398ef318a23d8b0fef951ad07 Mon Sep 17 00:00:00 2001 From: Micaiah Reid Date: Mon, 24 Jun 2024 13:50:20 -0400 Subject: [PATCH] ci: fix winget pkg version bump (#606) --- .github/workflows/pkg-version-bump.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pkg-version-bump.yaml b/.github/workflows/pkg-version-bump.yaml index 2272fd45f..63d38a6bd 100644 --- a/.github/workflows/pkg-version-bump.yaml +++ b/.github/workflows/pkg-version-bump.yaml @@ -28,7 +28,7 @@ jobs: TAG: ${{ github.event.client_payload.tag || github.event.inputs.tag }} run: | # Get version info - VERSION=$(echo "${TAG#v}") + $VERSION=${env:TAG}.substring(1) # Configure git configs git config --global user.name "${env:GIT_USER_NAME}" @@ -44,3 +44,4 @@ jobs: --token ${{ secrets.GH_TOKEN }} ` --submit ` HiroSystems.Chainhook +