Skip to content

Commit 9e8108f

Browse files
committed
Fix paths to archive files
1 parent 4940017 commit 9e8108f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/releases.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,13 @@ jobs:
8282
# Build binaries
8383
./project/scripts/sbt "all ${sbtProject}/Universal/packageBin ${sbtProject}/Universal/packageZipTarball"
8484
85-
outputPath="${distDir}/target/universal/stage"
8685
artifactName="scala3-${{ inputs.version }}${distroSuffix}"
8786
zipArchive="${artifactName}.zip"
8887
tarGzArchive="${artifactName}.tar.gz"
8988
9089
# Caluclate SHA for each of archive files
9190
for file in "${zipArchive}" "${tarGzArchive}"; do
92-
mv $outputPath/$file $file
91+
mv ${distDir}/target/universal/$file $file
9392
sha256sum "${file}" > "${file}.sha256"
9493
done
9594
}

0 commit comments

Comments
 (0)