Skip to content

Commit

Permalink
- name: Write SNK file (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-brazhenko committed Sep 12, 2023
1 parent ff2e74c commit d3c10f9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Write SNK file
shell: pwsh
run: |
$env:SNK_BASE64 -split ' ' -join "`n" | Out-File -Encoding utf8 ./SharpToken/keypair.snk.base64.txt
certutil -decode ./SharpToken/keypair.snk.base64.txt ./SharpToken/keypair.snk
env:
SNK_BASE64: ${{ secrets.SNK_BASE64 }}

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
Expand Down

0 comments on commit d3c10f9

Please sign in to comment.