Skip to content

Commit d153de6

Browse files
committed
fix: ok should work now
1 parent bff40c2 commit d153de6

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545
matrix:
4646
node-version: [22.x]
4747
# build for all platforms
48-
# os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
49-
os: [ubuntu-latest]
48+
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
5049
# here's a list of runner platforms for public repos: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#standard-github-hosted-runners-for-public-repositories
5150
# and here for private repos: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#standard-github-hosted-runners-for--private-repositories
5251

@@ -56,12 +55,12 @@ jobs:
5655
- name: Check out the repository
5756
uses: actions/checkout@v4
5857

59-
- name: Set up Node.js v${{ matrix.node-version }}
58+
- name: Setup Node.js v${{ matrix.node-version }}
6059
uses: actions/setup-node@v4
6160
with:
6261
node-version: ${{ matrix.node-version }}
6362

64-
- name: Set up Linux dependency cache
63+
- name: Setup Linux dependency cache
6564
if: ${{ runner.os == 'Linux' }}
6665
uses: actions/cache@v4
6766
with:
@@ -72,7 +71,7 @@ jobs:
7271
key: "${{ matrix.os }}-deps-${{ hashFiles('**/package.json', '**/electron-builder.json5') }}"
7372
restore-keys: ${{ matrix.os }}-deps-
7473

75-
- name: Set up Linux dependencies
74+
- name: Setup Linux dependencies
7675
if: ${{ runner.os == 'Linux' }}
7776
# ensure packages can be built for deb, rpm, snap, pacman
7877
run: |
@@ -86,7 +85,7 @@ jobs:
8685
rpm
8786
sudo snap install snapcraft --classic
8887
89-
- name: Set up pnpm
88+
- name: Setup pnpm
9089
uses: pnpm/action-setup@v4
9190
with:
9291
version: ${{ env.PNPM_VERSION }}
@@ -106,14 +105,14 @@ jobs:
106105
- name: Install dependencies
107106
run: pnpm i
108107

109-
- name: Set up electron-builder cache
108+
- name: Setup electron-builder cache
110109
uses: actions/cache@v4
111110
with:
112111
path: ${{ env.ELECTRON_BUILDER_CACHE }}
113112
key: ${{ matrix.os }}-electron-builder-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/electron-builder.json5') }}
114113
restore-keys: ${{ matrix.os }}-electron-builder-
115114

116-
- name: Build for ${{ matrix.os }}
115+
- name: Build on ${{ matrix.os }}
117116
run: pnpm build
118117

119118
- name: Upload artifacts

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
- name: Check out the repository
3030
uses: actions/checkout@v4
3131

32-
- name: Set up Node.js v${{ matrix.node-version }}
32+
- name: Setup Node.js v${{ matrix.node-version }}
3333
uses: actions/setup-node@v4
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636

37-
- name: Set up pnpm
37+
- name: Setup pnpm
3838
uses: pnpm/action-setup@v4
3939
with:
4040
version: ${{ env.PNPM_VERSION }}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Extensive template and boilerplate for building web- and desktop apps with React, Material UI, Three.js, Electron, TypeScript and Vite.
33
Supports hot reloading inside the electron app and has a full ESLint configuration, a custom loading screen and a lot of electron background process boilerplate.
44
Also sports GitHub Actions workflows for linting and analyzing the code for vulnerabilities and building the executable on multiple platforms.
5+
Builds for Windows (x64, arm64), MacOS (x64, arm64) and Linux (x64 and arm64 in the formats AppImage, deb, rpm and snap) are supported.
56

67
<br>
78

electron-builder.json5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
"deb",
4646
"rpm",
4747
"snap",
48-
"pacman",
4948
],
5049
artifactName: "${productName}-${version}-Linux.${ext}",
5150
category: "Utility",

0 commit comments

Comments
 (0)