From b76288a071c2a6a081f3bc9ba6da856dd8d254ed Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Fri, 20 Mar 2026 16:09:17 -0700 Subject: [PATCH] Fix error in creation of GITHUB_RELEASE_TAG in buildLoadup.yml --- .github/workflows/buildLoadup.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/buildLoadup.yml b/.github/workflows/buildLoadup.yml index 1ea81678..0a53c55f 100644 --- a/.github/workflows/buildLoadup.yml +++ b/.github/workflows/buildLoadup.yml @@ -173,8 +173,9 @@ jobs: echo "MAIKO_SHORT_RELEASE_TAG=${MAIKO_RELEASE_TAG#maiko-}" >>${GITHUB_ENV} - name: Even More Environment Variables run: | - echo "COMBINED_RELEASE_TAG=${MEDLEY_SHORT_RELEASE_TAG}_${MAIKO_SHORT_RELEASE_TAG}" >>${GITHUB_ENV} - echo "GITHUB_RELEASE_TAG=medley-${COMBINED_RELEASE_TAG}" >>${GITHUB_ENV} + crt="${MEDLEY_SHORT_RELEASE_TAG}_${MAIKO_SHORT_RELEASE_TAG}" + echo "COMBINED_RELEASE_TAG=${crt}" >>${GITHUB_ENV} + echo "GITHUB_RELEASE_TAG=medley-${crt}" >>${GITHUB_ENV} - name: Establish job outputs id: job_outputs run: | @@ -237,7 +238,7 @@ jobs: - name: Push the release id: push - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.21.0 with: allowUpdates: true artifacts: @@ -309,7 +310,7 @@ jobs: # Push the debs and tgz up to github releases - name: Push the release id: push_release - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.21.0 with: allowUpdates: true artifacts: @@ -390,7 +391,7 @@ jobs: # Push the .dmg and .zip up to github releases - name: Push the release id: push_release - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.21.0 with: allowUpdates: true artifacts: @@ -498,7 +499,7 @@ jobs: # Upload windows installer to release - name: Upload windows installer to release id: push - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.21.0 with: allowUpdates: true artifacts: installers/cygwin/${{ env.CYGWIN_INSTALLER }} @@ -553,7 +554,7 @@ jobs: - run: echo "placeholder" >placeholder.txt - name: Upload windows placeholder.txt to release id: pushph - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.21.0 with: allowUpdates: true artifacts: placeholder.txt