Skip to content

Commit

Permalink
Update build-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-soft authored Oct 18, 2023
1 parent 0550911 commit 5cfe2a3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,16 @@ jobs:
working-directory: build/Release
run: |
if [[ -f "ExplorerPatcher.amd64.dll" ]]; then cp ExplorerPatcher.amd64.dll dxgi.dll; fi
- name: Sign ExplorerPatcher files (1)
uses: deep-soft/code-sign-action@master
with:
certificate: '${{ secrets.WINDOWS_PFX_BASE64 }}'
password: '${{ secrets.WINDOWS_PFX_PASSWORD }}'
certificatesha1: '${{ secrets.WINDOWS_PFX_SHA1_THUMBPRINT }}'
# certificatename: '${{ secrets.CERTNAME }}'
folder: 'build/Release/'
recursive: true

- name: Patch setup
shell: cmd
Expand All @@ -139,6 +149,16 @@ jobs:
ep_setup_patch.exe
exit /b 0
- name: Sign ExplorerPatcher files (2)
uses: deep-soft/code-sign-action@master
with:
certificate: '${{ secrets.WINDOWS_PFX_BASE64 }}'
password: '${{ secrets.WINDOWS_PFX_PASSWORD }}'
certificatesha1: '${{ secrets.WINDOWS_PFX_SHA1_THUMBPRINT }}'
# certificatename: '${{ secrets.CERTNAME }}'
folder: 'build/Release/'
recursive: true

- name: Upload artifacts
uses: deep-soft/upload-artifact@v3
with:
Expand Down

0 comments on commit 5cfe2a3

Please sign in to comment.