Skip to content

Commit bff40c2

Browse files
committed
fix: add maintainer
1 parent 9b941f9 commit bff40c2

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ jobs:
6969
path: |
7070
/var/cache/apt/archives
7171
/var/lib/snapd/cache
72-
key: ${{ runner.os }}-linux-deps-${{ hashFiles('**/package.json', '**/electron-builder.json5') }}
72+
key: "${{ matrix.os }}-deps-${{ hashFiles('**/package.json', '**/electron-builder.json5') }}"
73+
restore-keys: ${{ matrix.os }}-deps-
7374

7475
- name: Set up Linux dependencies
7576
if: ${{ runner.os == 'Linux' }}
@@ -99,9 +100,8 @@ jobs:
99100
uses: actions/cache@v4
100101
with:
101102
path: ${{ env.STORE_PATH }}
102-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # cache the pnpm store as long as the lockfile isn't changed
103-
restore-keys: |
104-
${{ runner.os }}-pnpm-store-
103+
key: "${{ matrix.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}" # cache the pnpm store as long as the lockfile isn't changed
104+
restore-keys: ${{ matrix.os }}-pnpm-store-
105105

106106
- name: Install dependencies
107107
run: pnpm i
@@ -110,16 +110,15 @@ jobs:
110110
uses: actions/cache@v4
111111
with:
112112
path: ${{ env.ELECTRON_BUILDER_CACHE }}
113-
key: ${{ runner.os }}-electron-builder-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/electron-builder.json5') }}
114-
restore-keys: |
115-
${{ runner.os }}-electron-builder-
113+
key: ${{ matrix.os }}-electron-builder-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/electron-builder.json5') }}
114+
restore-keys: ${{ matrix.os }}-electron-builder-
116115

117-
- name: Build on ${{ runner.os }}
116+
- name: Build for ${{ matrix.os }}
118117
run: pnpm build
119118

120119
- name: Upload artifacts
121120
uses: actions/upload-artifact@v4
122121
with:
123-
name: "${{ runner.os }}-${{ github.ref_name }}-${{ github.sha }}"
122+
name: "${{ matrix.os }}-${{ github.ref_name }}-${{ github.sha }}"
124123
path: release
125124
retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }}

electron-builder.json5

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
],
5050
artifactName: "${productName}-${version}-Linux.${ext}",
5151
category: "Utility",
52+
maintainer: "Sv443",
53+
vendor: "Sv443",
5254
icon: "electron/resources/icon.png",
5355
},
5456
}

0 commit comments

Comments
 (0)