19
19
20
20
build_api_blazor :
21
21
name : build api + blazor web
22
- runs-on : ubuntu-22 .04
22
+ runs-on : ubuntu-24 .04
23
23
24
24
steps :
25
25
@@ -33,15 +33,12 @@ jobs:
33
33
34
34
- uses : actions/setup-node@v4
35
35
with :
36
- node-version : 20
36
+ node-version : 22
37
37
38
- # - name: Enable pre rendering
39
- # run: sed -i 's/public static readonly bool PrerenderEnabled = false;/public static readonly bool PrerenderEnabled = true;/g' src/Client/Bit.TemplatePlayground.Client.Core/Services/AppRenderMode.cs
40
-
41
38
- name : Update core appsettings.json
42
39
uses :
devops-actions/[email protected]
43
40
with :
44
- files : ' src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared /appsettings.json'
41
+ files : ' src/Shared/appsettings.json, src/ Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Web /appsettings.json'
45
42
env :
46
43
ServerAddress : ${{ env.SERVER_ADDRESS }}
47
44
@@ -69,11 +66,12 @@ jobs:
69
66
with :
70
67
name : server-bundle
71
68
path : ${{env.DOTNET_ROOT}}/server
69
+ include-hidden-files : true # Required for wwwroot/.well-known folder
72
70
73
71
deploy_api_blazor :
74
72
name : deploy api + blazor
75
73
needs : build_api_blazor
76
- runs-on : ubuntu-22 .04
74
+ runs-on : ubuntu-24 .04
77
75
environment :
78
76
name : ' production'
79
77
url : ${{ steps.deploy-to-webapp.outputs.webapp-url }}
@@ -140,36 +138,25 @@ jobs:
140
138
141
139
- uses : actions/setup-node@v4
142
140
with :
143
- node-version : 20
141
+ node-version : 22
144
142
145
143
- name : Update core appsettings.json
146
144
uses :
devops-actions/[email protected]
147
145
with :
148
- files : ' src\Client\Bit.TemplatePlayground.Client.Core\appsettings.json, src\Shared \appsettings.json'
146
+ files : ' src\Shared\appsettings.json, src\ Client\Bit.TemplatePlayground.Client.Core\appsettings.json, src\Client\Bit.TemplatePlayground.Client.Windows \appsettings.json'
149
147
env :
150
148
ServerAddress : ${{ env.SERVER_ADDRESS }}
151
- WindowsUpdateSettings .FilesUrl : ' https://use-your-server-url-here.com/windows' # Deploy the published Windows application files to your desired hosting location and use the host url here.
149
+ WindowsUpdate .FilesUrl : ' https://use-your-server-url-here.com/windows' # Deploy the published Windows application files to your desired hosting location and use the host url here.
152
150
153
151
- name : Generate CSS/JS files
154
152
run : dotnet build src\Client\Bit.TemplatePlayground.Client.Core\Bit.TemplatePlayground.Client.Core.csproj -t:BeforeBuildTasks --no-restore -c Release
155
153
156
154
- name : Publish
157
155
run : |
158
- cd src\Client\Bit.TemplatePlayground.Client.Windows\
159
- dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-arm64 -r win-arm64
160
- ren .\bin\publish-arm64\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-arm64.exe
161
- dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-x86 -r win-x86
162
- ren .\bin\publish-x86\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-x86.exe
163
- dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish-x64 -r win-x64
164
- ren .\bin\publish-x64\Bit.TemplatePlayground.Client.Windows.exe Bit.TemplatePlayground.Client.Windows-x64.exe
165
- dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\bin\publish
166
- del .\bin\publish\Bit.TemplatePlayground.Client.Windows.exe
167
- echo D | xcopy .\bin\publish-arm64 .\publish-result /s /e /h
168
- echo A | xcopy .\bin\publish-x86 .\publish-result /s /e /h
169
- echo A | xcopy .\bin\publish-x64 .\publish-result /s /e /h
170
- echo A | xcopy .\bin\publish .\publish-result /s /e /h
156
+ cd src\Client\Bit.TemplatePlayground.Client.Windows\
157
+ dotnet publish Bit.TemplatePlayground.Client.Windows.csproj -c Release -o .\publish-result -r win-x86 -p:Version="${{ vars.APPLICATION_DISPLAY_VERSION}}"
171
158
dotnet tool restore
172
- dotnet vpk pack -u Bit.TemplatePlayground.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.TemplatePlayground.Client.Windows-x86 .exe -r win-x86 --framework net8.0.8 -x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit.TemplatePlayground'
159
+ dotnet vpk pack -u Bit.TemplatePlayground.Client.Windows -v "${{ vars.APPLICATION_DISPLAY_VERSION }}" -p .\publish-result -e Bit.TemplatePlayground.Client.Windows.exe -r win-x86 --framework net9.0 -x86-desktop,webview2 --icon .\wwwroot\favicon.ico --packTitle 'Bit.TemplatePlayground'
173
160
174
161
- name : Upload artifact
175
162
uses : actions/upload-artifact@v4
@@ -179,7 +166,7 @@ jobs:
179
166
180
167
build_blazor_hybrid_android :
181
168
name : build blazor hybrid (android)
182
- runs-on : ubuntu-22 .04
169
+ runs-on : ubuntu-24 .04
183
170
184
171
steps :
185
172
@@ -193,7 +180,7 @@ jobs:
193
180
194
181
- uses : actions/setup-node@v4
195
182
with :
196
- node-version : 20
183
+ node-version : 22
197
184
198
185
- name : Extract Android signing key from env
199
186
@@ -205,7 +192,7 @@ jobs:
205
192
- name : Update core appsettings.json
206
193
uses :
devops-actions/[email protected]
207
194
with :
208
- files : ' src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared /appsettings.json'
195
+ files : ' src/Shared/appsettings.json, src/ Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Maui /appsettings.json'
209
196
env :
210
197
ServerAddress : ${{ env.SERVER_ADDRESS }}
211
198
@@ -221,20 +208,20 @@ jobs:
221
208
dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -t:BeforeBuildTasks --no-restore -c Release
222
209
223
210
- name : Build aab
224
- run : dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidPackageFormat=aab -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net8 .0-android
211
+ run : dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidPackageFormat=aab -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net9 .0-android
225
212
226
213
- name : Build apk
227
- run : dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net8 .0-android
214
+ run : dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -c Release -p:AndroidKeyStore=true -p:AndroidSigningKeyStore="Bit.TemplatePlayground.keystore" -p:AndroidSigningKeyAlias=Bit.TemplatePlayground -p:AndroidSigningKeyPass="${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSWORD }}" -p:AndroidSigningStorePass="${{ secrets.ANDROID_RELEASE_SIGNING_PASSWORD }}" -f net9 .0-android
228
215
229
216
- name : Upload artifact
230
217
uses : actions/upload-artifact@v4
231
218
with :
232
219
name : android-bundle
233
- path : src/Client/Bit.TemplatePlayground.Client.Maui/bin/Release/net8 .0-android/*-Signed.*
220
+ path : src/Client/Bit.TemplatePlayground.Client.Maui/bin/Release/net9 .0-android/*-Signed.*
234
221
235
222
build_blazor_hybrid_iOS :
236
223
name : build blazor hybrid (iOS-macOS)
237
- runs-on : macos-14
224
+ runs-on : macOS-15
238
225
239
226
steps :
240
227
@@ -248,16 +235,16 @@ jobs:
248
235
249
236
-
uses :
maxim-lobanov/[email protected]
250
237
with :
251
- xcode-version : ' 15.4 '
238
+ xcode-version : ' 16.0 '
252
239
253
240
- uses : actions/setup-node@v4
254
241
with :
255
- node-version : 20
242
+ node-version : 22
256
243
257
244
- name : Update core appsettings.json
258
245
uses :
devops-actions/[email protected]
259
246
with :
260
- files : ' src/Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Shared /appsettings.json'
247
+ files : ' src/Shared/appsettings.json, src/ Client/Bit.TemplatePlayground.Client.Core/appsettings.json, src/Client/Bit.TemplatePlayground.Client.Maui /appsettings.json'
261
248
env :
262
249
ServerAddress : ${{ env.SERVER_ADDRESS }}
263
250
@@ -284,10 +271,10 @@ jobs:
284
271
dotnet build src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -t:BeforeBuildTasks --no-restore -c Release
285
272
286
273
- name : Build ipa
287
- run : dotnet publish src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -p:RuntimeIdentifier=ios-arm64 -c Release -p:ArchiveOnBuild=true -p:CodesignKey="iPhone Distribution" -p:CodesignProvision="${{ env.IOS_CODE_SIGN_PROVISION }}" -p:ApplicationDisplayVersion="${{ vars.APPLICATION_DISPLAY_VERSION }}" -p:ApplicationVersion="${{ vars.APPLICATION_VERSION }}" -f net8 .0-ios
274
+ run : dotnet publish src/Client/Bit.TemplatePlayground.Client.Maui/Bit.TemplatePlayground.Client.Maui.csproj -p:RuntimeIdentifier=ios-arm64 -c Release -p:ArchiveOnBuild=true -p:CodesignKey="iPhone Distribution" -p:CodesignProvision="${{ env.IOS_CODE_SIGN_PROVISION }}" -p:ApplicationDisplayVersion="${{ vars.APPLICATION_DISPLAY_VERSION }}" -p:ApplicationVersion="${{ vars.APPLICATION_VERSION }}" -f net9 .0-ios
288
275
289
276
- name : Upload artifact
290
277
uses : actions/upload-artifact@v4
291
278
with :
292
279
name : iOS-bundle
293
- path : src/Client/Bit.TemplatePlayground.Client.Maui/bin/release/net8 .0-ios/ios-arm64/publish/*.ipa
280
+ path : src/Client/Bit.TemplatePlayground.Client.Maui/bin/release/net9 .0-ios/ios-arm64/publish/*.ipa
0 commit comments