Skip to content

Commit

Permalink
fix(build): codesign on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf authored and tiensonqin committed Aug 30, 2022
1 parent d9c9438 commit 5d3438a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build-desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,18 @@ jobs:
mkdir builds
mv static\out\make\squirrel.windows\x64\*.exe builds\Logseq-win-x64-${{ steps.ref.outputs.version }}.exe
- name: Code Sign the Installer
uses: andelf/code-sign-action@master
if: ${{ github.repository == 'logseq/logseq' }}
with:
certificate: ${{ secrets.CODE_SIGN_CERTIFICATE }}
password: ${{ secrets.CODE_SIGN_CERTIFICATE_PASSWORD }}
certificatesha1: ${{ secrets.CODE_SIGN_CERTIFICATE_SHA1 }}
certificatename: "Logseq, Inc."
timestampUrl: http://timestamp.digicert.com
folder: "builds"
recursive: false

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 5d3438a

Please sign in to comment.