Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jgraph/drawio-desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshraf Teleb <ashraf.teleb85@gmail.com>2022-06-04 00:20:50 +0300
committerAshraf Teleb <ashraf.teleb85@gmail.com>2022-06-04 00:20:50 +0300
commit40dcf64e6a51513f988a453e214c1b7ee2d2fc9d (patch)
tree5f2b9ef26d044ce385384959c840c6a09b369e51 /.github
parent2854ab03cb3ea6394345239aaeb5e84f92aefdf8 (diff)
Using non-EV certificate to sign windows binaries (Fixed appx)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/electron-builder-win.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/electron-builder-win.yml b/.github/workflows/electron-builder-win.yml
index c1638cd..0fc965d 100644
--- a/.github/workflows/electron-builder-win.yml
+++ b/.github/workflows/electron-builder-win.yml
@@ -10,8 +10,6 @@ jobs:
runs-on: windows-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
- CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
steps:
- name: Checkout reposistory
uses: actions/checkout@v2
@@ -31,12 +29,18 @@ jobs:
yarn install
cd ../..
- name: Build for Windows (x32)
+ env:
+ CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
+ CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
shell: powershell #The default shell for Windows
run: |
#Disable auto-update and build 32bit first such that latest.yml is for 64bit only (64bit will overwrite 32bit one)
yarn run sync disableUpdate
yarn run release-win32
- name: Build for Windows (x64)
+ env:
+ CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
+ CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
shell: powershell #The default shell for Windows
run: |
#Enable auto-update again