Commit 95d1001 1 parent 20572d0 commit 95d1001 Copy full SHA for 95d1001
File tree 1 file changed +19
-21
lines changed
1 file changed +19
-21
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
22
- install-dotnet :
22
+
23
+ build :
24
+
25
+
26
+ strategy :
27
+ matrix :
28
+ configuration : [Debug]
29
+ platform : [x64,x86,ARM64]
30
+
23
31
runs-on : windows-latest
24
32
env :
25
33
Solution_Name : ShadowViewer
@@ -31,37 +39,27 @@ jobs:
31
39
with :
32
40
submodules : recursive
33
41
fetch-depth : 0
34
-
42
+ - uses : actions/cache@v4
43
+ with :
44
+ path : |
45
+ ~/.nuget/packages
46
+ ~/.dotnet
47
+ key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
48
+ restore-keys : |
49
+ ${{ runner.os }}-nuget-
35
50
- name : Install .NET
36
51
uses : actions/setup-dotnet@v1
37
52
with :
38
53
dotnet-version : |
39
54
8.0.x
40
-
55
+
41
56
- name : Setup MSBuild.exe
42
57
uses : microsoft/setup-msbuild@v2
43
- - uses : actions/cache@v4
44
- with :
45
- path : ~/.nuget/packages
46
- key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
47
- restore-keys : |
48
- ${{ runner.os }}-nuget-
58
+
49
59
- name : Restore the application
50
60
run : msbuild $env:Solution_Name/$env:Solution_Name.csproj /t:Restore /p:Configuration=Debug
51
61
env :
52
62
Configuration : ${{ matrix.configuration }}
53
-
54
- build :
55
- needs : install-dotnet
56
- strategy :
57
- matrix :
58
- configuration : [Debug]
59
- platform : [x64,x86,ARM64]
60
-
61
- runs-on : windows-latest
62
- env :
63
- Solution_Name : ShadowViewer
64
- steps :
65
63
- name : Decode the pfx
66
64
run : |
67
65
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.BASE64_ENCODED_PFX }}")
You can’t perform that action at this time.
0 commit comments