mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 04:48:40 -09:00
Try fix things
This commit is contained in:
parent
d512ac5566
commit
80656dd5d7
3 changed files with 2 additions and 11 deletions
3
.github/workflows/nodejs.yml
vendored
3
.github/workflows/nodejs.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue