github.event.inputs are strings

Contributes to CURA-10998
This commit is contained in:
Jelle Spijker 2023-09-11 10:20:43 +02:00
parent 7a3d852d41
commit 312c2a5bb2
No known key found for this signature in database
GPG Key ID: 034D1C0527888B65

View File

@ -52,8 +52,8 @@ jobs:
with: with:
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }} cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
conan_args: ${{ github.event.inputs.conan_args }} conan_args: ${{ github.event.inputs.conan_args }}
enterprise: ${{ github.event.inputs.enterprise }} enterprise: ${{ github.event.inputs.enterprise == 'true' }}
staging: ${{ github.event.inputs.staging }} staging: ${{ github.event.inputs.staging == 'true' }}
architecture: X64 architecture: X64
operating_system: windows-2022 operating_system: windows-2022
secrets: inherit secrets: inherit
@ -64,8 +64,8 @@ jobs:
with: with:
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }} cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
conan_args: ${{ github.event.inputs.conan_args }} conan_args: ${{ github.event.inputs.conan_args }}
enterprise: ${{ github.event.inputs.enterprise }} enterprise: ${{ github.event.inputs.enterprise == 'true' }}
staging: ${{ github.event.inputs.staging }} staging: ${{ github.event.inputs.staging == 'true' }}
architecture: X64 architecture: X64
operating_system: ubuntu-22.04 operating_system: ubuntu-22.04
secrets: inherit secrets: inherit
@ -76,8 +76,8 @@ jobs:
with: with:
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }} cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
conan_args: ${{ github.event.inputs.conan_args }} conan_args: ${{ github.event.inputs.conan_args }}
enterprise: ${{ github.event.inputs.enterprise }} enterprise: ${{ github.event.inputs.enterprise == 'true' }}
staging: ${{ github.event.inputs.staging }} staging: ${{ github.event.inputs.staging == 'true' }}
architecture: X64 architecture: X64
operating_system: ubuntu-20.04 operating_system: ubuntu-20.04
secrets: inherit secrets: inherit
@ -88,8 +88,8 @@ jobs:
with: with:
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }} cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
conan_args: ${{ github.event.inputs.conan_args }} conan_args: ${{ github.event.inputs.conan_args }}
enterprise: ${{ github.event.inputs.enterprise }} enterprise: ${{ github.event.inputs.enterprise == 'true' }}
staging: ${{ github.event.inputs.staging }} staging: ${{ github.event.inputs.staging == 'true' }}
architecture: X64 architecture: X64
operating_system: macos-11.0 operating_system: macos-11.0
secrets: inherit secrets: inherit
@ -100,8 +100,8 @@ jobs:
with: with:
cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }} cura_conan_version: ${{ github.event.inputs.CURA_CONAN_VERSION }}
conan_args: ${{ github.event.inputs.conan_args }} conan_args: ${{ github.event.inputs.conan_args }}
enterprise: ${{ github.event.inputs.enterprise }} enterprise: ${{ github.event.inputs.enterprise == 'true' }}
staging: ${{ github.event.inputs.staging }} staging: ${{ github.event.inputs.staging == 'true' }}
architecture: ARM64 architecture: ARM64
operating_system: self-hosted operating_system: self-hosted
secrets: inherit secrets: inherit