Update release.yml

This commit is contained in:
Timothy Baldridge 2021-01-04 14:13:01 -07:00 committed by GitHub
parent c8135b07ef
commit 8969255017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,3 +25,14 @@ jobs:
run: dotnet publish Wabbajack\Wabbajack.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishApp --self-contained
- name: Publish Launcher
run: dotnet publish Wabbajack.Launcher\Wabbajack.Launcher.csproj --runtime win10-x64 --configuration Release /p:Platform=x64 -o c:\tmp\PublishLauncher --self-contained
- name: Sign App
uses: DanaBear/code-sign-action@v4
with:
certificate: ${{ secrets.CODE_CERT }}
folder: c:\tmp\PublishApp
- name: Sign Launcher
uses: DanaBear/code-sign-action@v4
with:
certificate: ${{ secrets.CODE_CERT }}
folder: c:\tmp\PublishLauncher