Skip to content

Commit 1b6cd39

Browse files
committed
Disables code signing in CI workflows
Turns off code signing for .NET 10 builds, likely for testing or development purposes where signed builds are not immediately required.
1 parent 173949b commit 1b6cd39

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
name: Build Prism.Core
3131
solution-path: PrismLibrary_Core.slnf
32-
code-sign: true
32+
code-sign: false
3333
artifact-name: Core
3434
dotnet-version: 10.0.100
3535
secrets:
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
name: Build Prism.Wpf
4646
solution-path: PrismLibrary_Wpf.slnf
47-
code-sign: true
47+
code-sign: false
4848
artifact-name: Wpf
4949
dotnet-version: 10.0.100
5050
secrets:
@@ -66,7 +66,7 @@ jobs:
6666
uno-check-version: 1.33.1
6767
uno-check-parameters: '--skip xcode --skip gtk3 --skip vswin --skip androidemulator --skip androidsdk --skip vsmac --skip dotnetnewunotemplates'
6868
run-tests: false
69-
code-sign: true
69+
code-sign: false
7070
artifact-name: Uno
7171
secrets:
7272
codeSignKeyVault: ${{ secrets.CodeSignKeyVault }}
@@ -81,7 +81,7 @@ jobs:
8181
name: Build Prism.Maui
8282
solution-path: PrismLibrary_Maui.slnf
8383
install-workload: maui maui-tizen
84-
code-sign: true
84+
code-sign: false
8585
artifact-name: Maui
8686
dotnet-version: 10.0.100
8787
secrets:
@@ -96,7 +96,7 @@ jobs:
9696
with:
9797
name: Build Prism.Avalonia
9898
solution-path: PrismLibrary_Avalonia.slnf
99-
code-sign: true
99+
code-sign: false
100100
artifact-name: Avalonia
101101
dotnet-version: 10.0.100
102102
secrets:

0 commit comments

Comments
 (0)