Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
CI/CD: Flip around ${TAG} and ${LABEL} in the generated file names
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonlehmann committed Dec 29, 2019
1 parent e692512 commit 68518b5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/matrix.yml
Expand Up @@ -114,11 +114,11 @@ jobs:
mkdir turtlecoin-${TAG}
cp ${TARGETS} turtlecoin-${TAG}/
cp ../../LICENSE turtlecoin-${TAG}/
tar cvfz turtlecoin-${TAG}-${LABEL}.tar.gz turtlecoin-${TAG}/
tar cvfz turtlecoin-${LABEL}-${TAG}.tar.gz turtlecoin-${TAG}/
rm -rf builds
mkdir builds
cp turtlecoin-${TAG}-${LABEL}.tar.gz builds
echo ::set-output name=file_name::turtlecoin-${TAG}-${LABEL}.tar.gz
cp turtlecoin-${LABEL}-${TAG}.tar.gz builds
echo ::set-output name=file_name::turtlecoin-${LABEL}-${TAG}.tar.gz
# Upload to GH Release
- name: Upload to GH Release
Expand Down Expand Up @@ -197,11 +197,11 @@ jobs:
mkdir turtlecoin-${TAG}
cp ${TARGETS} turtlecoin-${TAG}/
cp ../../LICENSE turtlecoin-${TAG}/
tar cvfz turtlecoin-${TAG}-${LABEL}.tar.gz turtlecoin-${TAG}/
tar cvfz turtlecoin-${LABEL}-${TAG}.tar.gz turtlecoin-${TAG}/
rm -rf builds
mkdir builds
cp turtlecoin-${TAG}-${LABEL}.tar.gz builds
echo ::set-output name=file_name::turtlecoin-${TAG}-${LABEL}.tar.gz
cp turtlecoin-${LABEL}-${TAG}.tar.gz builds
echo ::set-output name=file_name::turtlecoin-${LABEL}-${TAG}.tar.gz
# Upload to GH Release
Expand Down Expand Up @@ -280,11 +280,11 @@ jobs:
mkdir turtlecoin-${TAG}
cp *.exe turtlecoin-${TAG}/
cp ../../../LICENSE turtlecoin-${TAG}/
7z a turtlecoin-${TAG}-${LABEL}.zip turtlecoin-${TAG}/
7z a turtlecoin-${LABEL}-${TAG}.zip turtlecoin-${TAG}/
rm -rf builds
mkdir builds
cp turtlecoin-${TAG}-${LABEL}.zip builds
echo ::set-output name=file_name::turtlecoin-${TAG}-${LABEL}.zip
cp turtlecoin-${LABEL}-${TAG}.zip builds
echo ::set-output name=file_name::turtlecoin-${LABEL}-${TAG}.zip
# Upload to GH Release
Expand Down

0 comments on commit 68518b5

Please sign in to comment.