Skip to content

Commit

Permalink
v1.12.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolorentedev committed Aug 1, 2024
1 parent df5e96c commit db01913
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- name: Windows Codesign executable
if: matrix.os == 'windows-latest' && startsWith(github.event.head_commit.message,'v1.')
run: |
New-Item -ItemType directory -Path certificate
Set-Content -Path certificate\certificate.txt -Value '${{ secrets.WINDOWS_PFX }}'
certutil -decode certificate\certificate.txt certificate\certificate.pfx
echo -n $SIGNING_CERTIFICATE_BASE64 | base64 -d -o certificate\certificate.pfx
env:
SIGNING_CERTIFICATE_BASE64: ${{ secrets.SIGNING_CERTIFICATE_BASE64 }}
- name: OSX install setuptools
if: matrix.os == 'macOS-latest'
run: python3 -m pip install setuptools --break-system-packages
Expand Down
4 changes: 3 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ module.exports = {
"config": {
"name": "barklarm",
"setupIcon": "src/assets/favicon.ico",
"loadingGif": "src/assets/installer.gif"
"loadingGif": "src/assets/installer.gif",
"certificateFile": "certificate/certificate.pfx",
"certificatePassword": process.env.WINDOWS_PFX_SECRET
}
},
{
Expand Down

0 comments on commit db01913

Please sign in to comment.