mirror of
https://github.com/wavetermdev/backup.git
synced 2026-04-22 15:26:58 -07:00
Compare commits
6 Commits
v0.7.3
...
evan/snapd
| Author | SHA1 | Date | |
|---|---|---|---|
| 6bd46f55a4 | |||
| c84dd781f5 | |||
| 39cb7dfe11 | |||
| 1a0d6881ae | |||
| 66901735f9 | |||
| 7d4787ad1f |
@@ -27,7 +27,7 @@ jobs:
|
||||
if: matrix.platform == 'linux'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install --no-install-recommends -y libarchive-tools libopenjp2-tools rpm
|
||||
sudo apt-get install --no-install-recommends -y libarchive-tools libopenjp2-tools rpm snapcraft snapd
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: ${{env.GO_VERSION}}
|
||||
|
||||
@@ -56,6 +56,7 @@ const config = {
|
||||
arch: "universal",
|
||||
},
|
||||
],
|
||||
appId: "dev.commandline.waveterm",
|
||||
icon: "public/waveterm.icns",
|
||||
category: "public.app-category.developer-tools",
|
||||
minimumSystemVersion: "10.15.0",
|
||||
@@ -70,10 +71,11 @@ const config = {
|
||||
.map((f) => path.resolve(f.path, f.name)),
|
||||
},
|
||||
linux: {
|
||||
appId: "dev.commandline.waveterm",
|
||||
executableName: pkg.productName,
|
||||
category: "TerminalEmulator",
|
||||
icon: "public/waveterm.icns",
|
||||
target: ["zip", "deb", "rpm", "AppImage", "pacman"],
|
||||
target: ["zip", "deb", "rpm", "AppImage", "pacman", "snap"],
|
||||
synopsis: pkg.description,
|
||||
description: null,
|
||||
desktop: {
|
||||
@@ -86,6 +88,23 @@ const config = {
|
||||
appImage: {
|
||||
license: "LICENSE",
|
||||
},
|
||||
snap: {
|
||||
base: "core20",
|
||||
grade: "stable",
|
||||
confinement: "classic",
|
||||
summary: pkg.productName,
|
||||
title: pkg.productName,
|
||||
description: null,
|
||||
synopsis: pkg.description,
|
||||
allowNativeWayland: true,
|
||||
desktop: {
|
||||
Name: pkg.productName,
|
||||
Comment: pkg.description,
|
||||
Keywords: "developer;terminal;emulator;",
|
||||
category: "Development;Utility;",
|
||||
exec: pkg.productName,
|
||||
},
|
||||
},
|
||||
publish: {
|
||||
provider: "generic",
|
||||
url: "https://dl.waveterm.dev/releases",
|
||||
|
||||
Reference in New Issue
Block a user