-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9517fae
commit e4b87ee
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,9 @@ jobs: | |
|
||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v4 | ||
# remember to keep this in sync with package.json "engines" | ||
# remember to keep this in sync with package.json's volta->node setting | ||
with: | ||
node-version: 16 | ||
node-version: 20 | ||
cache: "yarn" # I always get 'yarn cache is not found' but ah well | ||
|
||
- name: Build/release Electron app | ||
|
@@ -41,3 +41,20 @@ jobs: | |
release: true # ${{ startsWith(github.ref, 'refs/tags/v') }} | ||
env: | ||
in_github_action: "true" | ||
|
||
sign-installer: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Sign installer | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
uses: sillsdev/codesign/.github/workflows/[email protected] | ||
with: | ||
path: BloomPub*.exe | ||
description: BloomPUB Viewer installer | ||
secrets: | ||
certificate: ${{ secrets.CODESIGN_LSDEVSECTIGOEV }} | ||
|
||
- name: Confirm signature | ||
uses: sillsdev/codesign/[email protected] | ||
with: | ||
path: BloomPub*.exe |