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 1307613 commit 2c3f2f2Copy full SHA for 2c3f2f2
.github/workflows/build.yml
@@ -49,7 +49,12 @@ jobs:
49
run: msbuild $env:Solution_Name/$env:Solution_Name.csproj /t:Restore /p:Configuration=$env:Configuration
50
env:
51
Configuration: ${{ matrix.configuration }}
52
-
+ - uses: actions/cache@v4
53
+ with:
54
+ path: ~/.nuget/packages
55
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
56
+ restore-keys: |
57
+ ${{ runner.os }}-nuget-
58
- name: Decode the pfx
59
run: |
60
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.BASE64_ENCODED_PFX }}")
0 commit comments