We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5091f82 commit 43cc4f6Copy full SHA for 43cc4f6
1 file changed
.github/workflows/validate.yml
@@ -77,7 +77,11 @@ jobs:
77
} elseif ('${{ matrix.unity-version }}' -eq '2022.3.x') {
78
echo "EXPORT_OPTION=development" >> $env:GITHUB_ENV
79
} else {
80
- echo "EXPORT_OPTION=steam" >> $env:GITHUB_ENV
+ if ('${{ matrix.build-target }}' -eq 'iOS') {
81
+ echo "EXPORT_OPTION=development" >> $env:GITHUB_ENV
82
+ } else {
83
+ echo "EXPORT_OPTION=steam" >> $env:GITHUB_ENV
84
+ }
85
}
86
shell: pwsh
87
- uses: buildalon/activate-unity-license@v1
0 commit comments