Try fix things

This commit is contained in:
Philip Peterson 2024-12-08 04:37:39 -09:00
parent d512ac5566
commit 80656dd5d7
No known key found for this signature in database
GPG key ID: 354311183FC6519B
3 changed files with 2 additions and 11 deletions

View file

@ -85,7 +85,6 @@ jobs:
dist/*.snap
dist/*.AppImage
dist/*.deb
dist/*.rpm
dist/*.pacman
dist/*.exe
- name: Run E2E Tests
@ -182,7 +181,7 @@ jobs:
sudo apt install -y libglib2.0-0:i386 libexpat1:i386 libgcc-s1:i386
npm_config_arch=armv7l yarn run v8-snapshot:arch
- name: Build
run: yarn run electron-builder -l deb rpm AppImage pacman --${{ matrix.name }} -c electron-builder-linux-ci.json
run: yarn run electron-builder -l deb AppImage pacman --${{ matrix.name }} -c electron-builder-linux-ci.json
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive Build Artifacts

View file

@ -238,6 +238,6 @@ app.on('open-file', (_event, path) => {
app.on('open-url', (_event, sshUrl) => {
GetWindow((win: BrowserWindow) => {
win.rpc.emit('open ssh', parseUrl(sshUrl));
win.rpc.emit('open ssh', parseUrl(sshUrl) as any);
});
});

View file

@ -23,7 +23,6 @@
"target": [
"deb",
"AppImage",
"rpm",
"snap",
"pacman"
]
@ -103,13 +102,6 @@
"compression": "bzip2",
"afterInstall": "./build/linux/after-install.tpl"
},
"rpm": {
"afterInstall": "./build/linux/after-install.tpl",
"fpm": [
"--rpm-rpmbuild-define",
"_build_id_links none"
]
},
"snap": {
"confinement": "classic",
"publish": "github"