We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9653ff8 commit 06fd068Copy full SHA for 06fd068
.github/workflows/create-release-pr.yml
@@ -135,8 +135,14 @@ jobs:
135
echo "✅ Installed build-tools:"
136
ls -R $ANDROID_SDK_ROOT/build-tools || true
137
138
-
139
- - name: Build .NET solution
+ - name: Build .NET solution (skip iOS signing)
140
run: |
141
dotnet restore
142
- dotnet build OneSignal.sln /t:Rebuild /p:Configuration=Release /p:Version=${{ inputs.dotnet_version }}
+ dotnet build OneSignal.sln \
+ /t:Rebuild \
143
+ /p:Configuration=Release \
144
+ /p:Version=${{ inputs.version }} \
145
+ /p:BuildIpa=false \
146
+ /p:EnableCodeSigning=false \
147
+ /p:CodesignKey="" \
148
+ /p:CodesignProvision=""
0 commit comments