Skip to content

Commit b76288a

Browse files
committed
Fix error in creation of GITHUB_RELEASE_TAG in buildLoadup.yml
1 parent f1e75df commit b76288a

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/buildLoadup.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ jobs:
173173
echo "MAIKO_SHORT_RELEASE_TAG=${MAIKO_RELEASE_TAG#maiko-}" >>${GITHUB_ENV}
174174
- name: Even More Environment Variables
175175
run: |
176-
echo "COMBINED_RELEASE_TAG=${MEDLEY_SHORT_RELEASE_TAG}_${MAIKO_SHORT_RELEASE_TAG}" >>${GITHUB_ENV}
177-
echo "GITHUB_RELEASE_TAG=medley-${COMBINED_RELEASE_TAG}" >>${GITHUB_ENV}
176+
crt="${MEDLEY_SHORT_RELEASE_TAG}_${MAIKO_SHORT_RELEASE_TAG}"
177+
echo "COMBINED_RELEASE_TAG=${crt}" >>${GITHUB_ENV}
178+
echo "GITHUB_RELEASE_TAG=medley-${crt}" >>${GITHUB_ENV}
178179
- name: Establish job outputs
179180
id: job_outputs
180181
run: |
@@ -237,7 +238,7 @@ jobs:
237238

238239
- name: Push the release
239240
id: push
240-
uses: ncipollo/release-action@v1
241+
uses: ncipollo/release-action@v1.21.0
241242
with:
242243
allowUpdates: true
243244
artifacts:
@@ -309,7 +310,7 @@ jobs:
309310
# Push the debs and tgz up to github releases
310311
- name: Push the release
311312
id: push_release
312-
uses: ncipollo/release-action@v1
313+
uses: ncipollo/release-action@v1.21.0
313314
with:
314315
allowUpdates: true
315316
artifacts:
@@ -390,7 +391,7 @@ jobs:
390391
# Push the .dmg and .zip up to github releases
391392
- name: Push the release
392393
id: push_release
393-
uses: ncipollo/release-action@v1
394+
uses: ncipollo/release-action@v1.21.0
394395
with:
395396
allowUpdates: true
396397
artifacts:
@@ -498,7 +499,7 @@ jobs:
498499
# Upload windows installer to release
499500
- name: Upload windows installer to release
500501
id: push
501-
uses: ncipollo/release-action@v1
502+
uses: ncipollo/release-action@v1.21.0
502503
with:
503504
allowUpdates: true
504505
artifacts: installers/cygwin/${{ env.CYGWIN_INSTALLER }}
@@ -553,7 +554,7 @@ jobs:
553554
- run: echo "placeholder" >placeholder.txt
554555
- name: Upload windows placeholder.txt to release
555556
id: pushph
556-
uses: ncipollo/release-action@v1
557+
uses: ncipollo/release-action@v1.21.0
557558
with:
558559
allowUpdates: true
559560
artifacts: placeholder.txt

0 commit comments

Comments
 (0)