Skip to content

Commit

Permalink
[GHA] Fix publish string var usage
Browse files Browse the repository at this point in the history
ci release
  • Loading branch information
RoiArthurB committed Apr 26, 2022
1 parent 5812716 commit 350ed40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions travis/github_release_withjdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ n=0
suff=($SUFFIX $SUFFIX_DEB)
for s in ${suff[@]};
do
RELEASEFILES[$n]="$GITHUB_WORKSPACE/gama-platform_1.8.2-1_amd64."$($s | rev | cut -d "." -f 1 | rev)
RELEASEFILES[$n]=$GITHUB_WORKSPACE"/gama-platform_1.8.2-1_amd64."$($s | rev | cut -d "." -f 1 | rev)
NEWFILES[$n]='GAMA_1.8.2_Linux'$s
n=$n+1
RELEASEFILES[$n]="$GITHUB_WORKSPACE/gama-platform-jdk_1.8.2-1_amd64."$($s | rev | cut -d "." -f 1 | rev)
RELEASEFILES[$n]=$GITHUB_WORKSPACE"/gama-platform-jdk_1.8.2-1_amd64."$($s | rev | cut -d "." -f 1 | rev)
NEWFILES[$n]='GAMA_1.8.2_Linux_with_JDK'$s
n=$n+1
done
Expand Down Expand Up @@ -96,10 +96,10 @@ n=$n+1
RELEASEFILES[$n]="$thePATH-win32.win32.x86_64_withJDK.zip"
NEWFILES[$n]='GAMA_1.8.2_Windows_with_JDK'$SUFFIX
n=$n+1
RELEASEFILES[$n]="$GITHUB_WORKSPACE/Gama_installer_x86_64.exe"
RELEASEFILES[$n]=$GITHUB_WORKSPACE"/Gama_installer_x86_64.exe"
NEWFILES[$n]='GAMA_1.8.2_Windows'$SUFFIX_EXE
n=$n+1
RELEASEFILES[$n]="$GITHUB_WORKSPACE/Gama_installer_x86_64_withJDK.exe"
RELEASEFILES[$n]=$GITHUB_WORKSPACE"/Gama_installer_x86_64_withJDK.exe"
NEWFILES[$n]='GAMA_1.8.2_Windows_with_JDK'$SUFFIX_EXE
n=$n+1

Expand Down

0 comments on commit 350ed40

Please sign in to comment.