SL-18837: String literals are single-quoted in GitHub expressions.
parent
db71f834bc
commit
bac73831c0
|
|
@ -212,7 +212,7 @@ jobs:
|
|||
echo "artifact=$RUNNER_OS$cfg_suffix" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Upload installer
|
||||
if: matrix.configuration != "ReleaseOS"
|
||||
if: matrix.configuration != 'ReleaseOS'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: "${{ steps.build.outputs.artifact }}-installer"
|
||||
|
|
@ -221,7 +221,7 @@ jobs:
|
|||
${{ steps.build.outputs.installer }}
|
||||
|
||||
- name: Upload executable
|
||||
if: matrix.configuration != "ReleaseOS" && steps.build.outputs.viewer_exe
|
||||
if: matrix.configuration != 'ReleaseOS' && steps.build.outputs.viewer_exe
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: "${{ steps.build.outputs.artifact }}-exe"
|
||||
|
|
@ -230,7 +230,7 @@ jobs:
|
|||
# The other upload of nontrivial size is the symbol file. Use a distinct
|
||||
# artifact for that too.
|
||||
- name: Upload symbol file
|
||||
if: matrix.configuration != "ReleaseOS"
|
||||
if: matrix.configuration != 'ReleaseOS'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: "${{ steps.build.outputs.artifact }}-symbols"
|
||||
|
|
@ -238,7 +238,7 @@ jobs:
|
|||
${{ steps.build.outputs.symbolfile }}
|
||||
|
||||
- name: Upload metadata
|
||||
if: matrix.configuration != "ReleaseOS"
|
||||
if: matrix.configuration != 'ReleaseOS'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
# Call this artifact just "Windows" or "macOS" because it's the only
|
||||
|
|
@ -255,7 +255,7 @@ jobs:
|
|||
- name: Upload physics package
|
||||
uses: actions/upload-artifact@v3
|
||||
# should only be set for viewer-private
|
||||
if: matrix.configuration != "ReleaseOS" && steps.build.outputs.physicstpv
|
||||
if: matrix.configuration != 'ReleaseOS' && steps.build.outputs.physicstpv
|
||||
with:
|
||||
name: "${{ steps.build.outputs.artifact }}-physics"
|
||||
# emitted by build.sh, zero or one lines
|
||||
|
|
|
|||
Loading…
Reference in New Issue