Skip to content

Commit b3d915f

Browse files
Adjust building compiler logic once more
1 parent d2b5ea4 commit b3d915f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/actions/setup-build/action.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ runs:
104104
java -version
105105
106106
compilerProject=scala3-bootstrapped
107-
if [[ "${{ steps.calc-version.outputs.effective-scala-version }}" == 3.8.0-RC* \
108-
|| "${{ steps.calc-version.outputs.effective-scala-version }}" == 3.8.1* ]]; then
107+
if [[ "${{ steps.calc-version.outputs.effective-scala-version }}" == 3.8.0* \
108+
|| "${{ steps.calc-version.outputs.effective-scala-version }}" == 3.8.1* \
109+
|| "${{ steps.calc-version.outputs.effective-scala-version }}" == 3.8.2-RC* ]]; then
109110
compilerProject=scala3-bootstrapped-new
110111
fi
111112
echo "Would publish $compilerProject"

0 commit comments

Comments
 (0)