Skip to content

Commit

Permalink
Fix github actions expression syntax (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlabelle authored Nov 1, 2023
1 parent 38a7d91 commit 4de1937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
NUGET_PACKAGE_VERSION_MAJOR: 0
NUGET_PACKAGE_VERSION_MINOR: 1
NUGET_PACKAGE_VERSION_PATCH: ${{ github.run_number }}
NUGET_PACKAGE_VERSION_PRERELEASE_SUFFIX: ${{ github.event.inputs.version_prerelease_identifier && '' || '-' }}${{ github.event.inputs.version_prerelease_identifier }}
NUGET_PACKAGE_VERSION_PRERELEASE_SUFFIX: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version_prerelease_identifier != '' && format('-{0}', github.event.inputs.version_prerelease_identifier) || '' }}
runs-on: windows-2022
name: Swift/WinRT Release Build & Publish
permissions:
Expand Down

0 comments on commit 4de1937

Please sign in to comment.