Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions .github/workflows/build-electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
node-version: '24.15.0'
cache: 'npm'
cache-dependency-path: 'electron/package-lock.json'

Expand All @@ -87,27 +87,17 @@ jobs:
cd electron
npm ci

- name: Package Electron app
run: |
cd electron
npm run package

- name: Make installers
run: |
cd electron
npm run make

- name: List output files (debug)
run: |
echo "Contents of electron/out/make:"
ls -R electron/out/make/
shell: bash

- name: Upload installers
uses: actions/upload-artifact@v4
with:
name: electron-${{ matrix.platform }}-installers
path: ${{ matrix.artifact_patterns }}
if-no-files-found: error
retention-days: 7

upload-electron-to-release:
Expand Down
6 changes: 3 additions & 3 deletions electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"platforms": [
"win32"
],
"config": {
"name": "DigiScript",
"authors": "DreamTeamProd",
Expand All @@ -75,13 +78,19 @@
},
{
"name": "@electron-forge/maker-deb",
"platforms": [
"linux"
],
"config": {
"bin": "digiscript",
"maintainer": "DreamTeamProd"
}
},
{
"name": "@electron-forge/maker-rpm",
"platforms": [
"linux"
],
"config": {
"bin": "digiscript",
"vendor": "DreamTeamProd"
Expand Down
Loading