mirror of
https://github.com/Eugeny/tabby.git
synced 2025-09-12 11:24:36 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
72a024c713 | ||
![]() |
6132881b8a |
9
.github/workflows/windows.yml
vendored
9
.github/workflows/windows.yml
vendored
@@ -26,7 +26,6 @@ jobs:
|
|||||||
run: node scripts/build-windows.js
|
run: node scripts/build-windows.js
|
||||||
if: github.repository == 'Eugeny/terminus' && github.event_name == 'push'
|
if: github.repository == 'Eugeny/terminus' && github.event_name == 'push'
|
||||||
env:
|
env:
|
||||||
DEBUG: electron-builder,electron-builder:*
|
|
||||||
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
|
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
|
||||||
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
|
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
|
||||||
@@ -41,8 +40,6 @@ jobs:
|
|||||||
mv dist/*-setup.exe artifact-setup/
|
mv dist/*-setup.exe artifact-setup/
|
||||||
mkdir artifact-portable
|
mkdir artifact-portable
|
||||||
mv dist/*-portable.exe artifact-portable/
|
mv dist/*-portable.exe artifact-portable/
|
||||||
mkdir artifact-appx
|
|
||||||
mv dist/*.appx artifact-appx/
|
|
||||||
|
|
||||||
- uses: actions/upload-artifact@master
|
- uses: actions/upload-artifact@master
|
||||||
name: Upload installer
|
name: Upload installer
|
||||||
@@ -55,9 +52,3 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: Portable build
|
name: Portable build
|
||||||
path: artifact-portable
|
path: artifact-portable
|
||||||
|
|
||||||
- uses: actions/upload-artifact@master
|
|
||||||
name: Upload APPX
|
|
||||||
with:
|
|
||||||
name: Portable build
|
|
||||||
path: artifact-appx
|
|
||||||
|
@@ -22,10 +22,6 @@ nsis:
|
|||||||
installerIcon: "./build/windows/icon.ico"
|
installerIcon: "./build/windows/icon.ico"
|
||||||
portable:
|
portable:
|
||||||
artifactName: terminus-${version}-portable.exe
|
artifactName: terminus-${version}-portable.exe
|
||||||
appx:
|
|
||||||
artifactName: terminus-${version}.appx
|
|
||||||
publisher: 'CN="Syslink GmbH",O="Syslink GmbH",PostalCode=40477,STREET="Parkstrasse 31", L=Duesseldorf, OID.2.5.4.8=NRW, C=DE'
|
|
||||||
publisherDisplayName: 'Eugene Pankov'
|
|
||||||
|
|
||||||
mac:
|
mac:
|
||||||
category: public.app-category.video
|
category: public.app-category.video
|
||||||
|
@@ -3,6 +3,7 @@ const builder = require('electron-builder').build
|
|||||||
const vars = require('./vars')
|
const vars = require('./vars')
|
||||||
|
|
||||||
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
||||||
|
const isCI = !!process.env.GITHUB_REF
|
||||||
|
|
||||||
builder({
|
builder({
|
||||||
dir: true,
|
dir: true,
|
||||||
|
@@ -3,6 +3,7 @@ const builder = require('electron-builder').build
|
|||||||
const vars = require('./vars')
|
const vars = require('./vars')
|
||||||
|
|
||||||
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
||||||
|
const isCI = !!process.env.GITHUB_REF
|
||||||
|
|
||||||
builder({
|
builder({
|
||||||
dir: true,
|
dir: true,
|
||||||
|
@@ -3,10 +3,11 @@ const builder = require('electron-builder').build
|
|||||||
const vars = require('./vars')
|
const vars = require('./vars')
|
||||||
|
|
||||||
const isTag = (process.env.GITHUB_REF || process.env.BUILD_SOURCEBRANCH || '').startsWith('refs/tags/')
|
const isTag = (process.env.GITHUB_REF || process.env.BUILD_SOURCEBRANCH || '').startsWith('refs/tags/')
|
||||||
|
const isCI = !!process.env.GITHUB_REF
|
||||||
|
|
||||||
builder({
|
builder({
|
||||||
dir: true,
|
dir: true,
|
||||||
win: ['nsis', 'portable', 'appx'],
|
win: ['nsis', 'portable'],
|
||||||
config: {
|
config: {
|
||||||
extraMetadata: {
|
extraMetadata: {
|
||||||
version: vars.version,
|
version: vars.version,
|
||||||
|
@@ -99,9 +99,7 @@ export class WSLShellProvider extends ShellProvider {
|
|||||||
TERM: 'xterm-color',
|
TERM: 'xterm-color',
|
||||||
COLORTERM: 'truecolor',
|
COLORTERM: 'truecolor',
|
||||||
},
|
},
|
||||||
}
|
icon: wslIconMap[name],
|
||||||
if (wslIconMap.hasOwnProperty(name)) {
|
|
||||||
shell['icon'] = require(`../icons/${wslIconMap[name]}`)
|
|
||||||
}
|
}
|
||||||
shells.push(shell)
|
shells.push(shell)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user