Skip to content

Commit

Permalink
Fix ternary syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesDawson committed Nov 18, 2024
1 parent 8bea076 commit 47a94f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/run-scripted-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ runs:
-Configuration ${{ inputs.configuration }}
shell: pwsh
env:
GH_TOKEN: ${{ env.GH_TOKEN != '' ? env.GH_TOKEN | github.token }}
GH_TOKEN: ${{ env.GH_TOKEN != '' && env.GH_TOKEN || github.token }}
NUGET_PACKAGES: ${{ github.workspace }}/.nuget-packages

- name: Save Cached Outputs
Expand Down

0 comments on commit 47a94f1

Please sign in to comment.