Skip to content

Commit 131bbeb

Browse files
committed
feat(button): cicd
1 parent 67406f8 commit 131bbeb

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

.github/workflows/reuseable-ci-checks.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,13 @@ jobs:
173173
["./TELBlazor.Components.UnitTests/appsettings.Development.json"]="${{ secrets.UNITTESTS_APPSETTINGS_DEVELOPMENT }}"
174174
["./TELBlazor.Components.ShowCase.WasmStaticClient/wwwroot/appsettings.Development.json"]="${{ secrets.WASMSTATICCLIENT_APPSETTINGS_DEVELOPMENT }}"
175175
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.Development.json"]="${{ secrets.WASMSERVERHOSTCLIENT_APPSETTINGS_DEVELOPMENT }}"
176-
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/appsettings.Development.json"]="${{ secrets.WASMSERVERHOST_APPSETTINGS_DEVELOPMENT }}"
176+
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/appsettings.Development.json"]="${{ secrets.WASMSERVERHOST_APPSETTINGS_DEVELOPMENT }}"
177177
)
178178
179179
for path in "${!paths[@]}"; do
180180
mkdir -p "$(dirname "$path")"
181181
printf '%s' "${paths[$path]}" > "$path"
182-
done
182+
done
183183
184184
- name: Clean lock files because the newly generated package file will superseed the locks
185185
run: |
@@ -250,20 +250,21 @@ jobs:
250250
- name: Clean lock files because the newly generated package file will superseed the locks
251251
run: |
252252
find . -name "packages.lock.json" -type f -exec rm -f {} \;
253-
253+
254254
- name: Create appsettings development from secrets
255255
run: |
256256
declare -A paths=(
257257
["./TELBlazor.Components.UnitTests/appsettings.Development.json"]="${{ secrets.UNITTESTS_APPSETTINGS_DEVELOPMENT }}"
258258
["./TELBlazor.Components.ShowCase.WasmStaticClient/wwwroot/appsettings.Development.json"]="${{ secrets.WASMSTATICCLIENT_APPSETTINGS_DEVELOPMENT }}"
259259
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.Development.json"]="${{ secrets.WASMSERVERHOSTCLIENT_APPSETTINGS_DEVELOPMENT }}"
260-
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/appsettings.Development.json"]="${{ secrets.WASMSERVERHOST_APPSETTINGS_DEVELOPMENT }}"
260+
["./TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/appsettings.Development.json"]="${{ secrets.WASMSERVERHOST_APPSETTINGS_DEVELOPMENT }}"
261261
)
262262
263263
for path in "${!paths[@]}"; do
264264
mkdir -p "$(dirname "$path")"
265265
printf '%s' "${paths[$path]}" > "$path"
266-
done
266+
done
267+
267268

268269
- name: Set up Node.js so we have gulp for retrieving TEL Frontend Css
269270
uses: actions/setup-node@v4

Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.1" />
2020
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
2121

22+
2223
<!-- Storage -->
2324
<PackageVersion Include="Blazored.LocalStorage" Version="4.5.0" />
2425

TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/Program.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,11 @@
1414
using Serilog.Sinks.BrowserConsole;
1515
using Serilog.Formatting.Compact;
1616
using Serilog.Settings.Configuration;
17-
18-
17+
using Microsoft.Extensions.Http;
1918

2019
/*qqqq setup*/
2120
using Blazored.LocalStorage;
22-
using Serilog;
23-
using Serilog.Core;
24-
using Serilog.Events;
25-
using TELBlazor.Components.Core.Services.HelperServices;
26-
using TELBlazor.Components.ShowCase.Shared.Services.HelperServices;
27-
using TELBlazor.Components.Core.Configuration;
21+
2822

2923
var builder = WebAssemblyHostBuilder.CreateDefault(args);
3024

TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using TELBlazor.Components.ShowCase.E2ETests.WasmServerHost;
77
using TELBlazor.Components.ShowCase.Shared.Services.HelperServices;
88

9-
9+
using Microsoft.Extensions.Http;
1010

1111

1212
using Microsoft.AspNetCore.Components.Web;

TELBlazor.Components.ShowCase.WasmStaticClient/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
33
using TELBlazor.Components.ShowCase.WasmStaticClient;
44
using Microsoft.AspNetCore.Components;
5-
5+
using Microsoft.Extensions.Http;
66
/*Are used via appsetting*/
77
using Serilog.Extensions.Logging;
88
using Serilog.Configuration;

0 commit comments

Comments
 (0)