File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 3636 - name : Set output
3737 id : set_output
3838 run : |
39- if [[ "${{ inputs.platforms }}" == "rocky8" ]]; then
40- echo runson=ubuntu-latest >> $GITHUB_OUTPUT
41- echo container=ccdcrepository.azurecr.io/conan/rocky8-gcc10:latest >> $GITHUB_OUTPUT
42- echo python=python3 >> $GITHUB_OUTPUT
43- elif [[ "${{ inputs.platforms }}" == "ubuntu" ]]; then
39+ if [[ "${{ inputs.platforms }}" == "ubuntu" ]]; then
4440 echo runson=ubuntu-latest >> $GITHUB_OUTPUT
4541 echo python=python3 >> $GITHUB_OUTPUT
4642 elif [[ "${{ inputs.platforms }}" == "macos" ]]; then
4945 elif [[ "${{ inputs.platforms }}" == "windows" ]]; then
5046 echo runson=windows-2019 >> $GITHUB_OUTPUT
5147 echo python=python >> $GITHUB_OUTPUT
48+ else
49+ # default to Rocky
50+ echo runson=ubuntu-latest >> $GITHUB_OUTPUT
51+ echo container=ccdcrepository.azurecr.io/conan/rocky8-gcc10:latest >> $GITHUB_OUTPUT
52+ echo python=python3 >> $GITHUB_OUTPUT
5253 fi
5354
5455 build-upload :
You can’t perform that action at this time.
0 commit comments