Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 864571df56 | |||
| 2cf64b556f | |||
| 55ac9a4596 | |||
| ec7adaafe3 | |||
| b1c702a033 | |||
| 6e9ef636b6 |
@@ -9,20 +9,24 @@ jobs:
|
|||||||
build-and-release:
|
build-and-release:
|
||||||
name: Build App
|
name: Build App
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout (with submodules)
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
submodules: recursive
|
- name: Checkout assets
|
||||||
|
run: git -c submodule."assets".update=checkout submodule update --init assets
|
||||||
|
|
||||||
- name: Install pnpm
|
- name: Install pnpm
|
||||||
uses: pnpm/action-setup@v4
|
uses: pnpm/action-setup@v4
|
||||||
with:
|
with:
|
||||||
version: 10
|
|
||||||
run_install: false
|
run_install: false
|
||||||
|
|
||||||
- name: Install Node.js
|
- name: Install Node.js
|
||||||
@@ -42,3 +46,5 @@ jobs:
|
|||||||
pnpm run make
|
pnpm run make
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ const config: ForgeConfig = {
|
|||||||
rebuildConfig: {},
|
rebuildConfig: {},
|
||||||
makers: [
|
makers: [
|
||||||
new MakerAppX({
|
new MakerAppX({
|
||||||
|
certPass: "",
|
||||||
packageExecutable: `app\\${STRINGS.execName}.exe`,
|
packageExecutable: `app\\${STRINGS.execName}.exe`,
|
||||||
publisher: "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
|
publisher: "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
|
||||||
}),
|
}),
|
||||||
@@ -51,6 +52,7 @@ const config: ForgeConfig = {
|
|||||||
copyright: "Copyright (C) 2025 Revolt Platforms LTD",
|
copyright: "Copyright (C) 2025 Revolt Platforms LTD",
|
||||||
}),
|
}),
|
||||||
new MakerZIP({}),
|
new MakerZIP({}),
|
||||||
|
...[
|
||||||
new MakerFlatpak({
|
new MakerFlatpak({
|
||||||
options: {
|
options: {
|
||||||
id: "chat.stoat.stoat-desktop",
|
id: "chat.stoat.stoat-desktop",
|
||||||
@@ -109,6 +111,7 @@ const config: ForgeConfig = {
|
|||||||
"files"
|
"files"
|
||||||
> */
|
> */
|
||||||
}),
|
}),
|
||||||
|
].slice(0, 0), // disable Flatpak build
|
||||||
new MakerDeb({
|
new MakerDeb({
|
||||||
options: {
|
options: {
|
||||||
productName: STRINGS.name,
|
productName: STRINGS.name,
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "stoat-desktop",
|
"name": "stoat-desktop",
|
||||||
"productName": "stoat-desktop",
|
"productName": "stoat-desktop",
|
||||||
"version": "1.1.0",
|
"version": "1.1.8",
|
||||||
"main": ".vite/build/main.js",
|
"main": ".vite/build/main.js",
|
||||||
"repository": "stoatchat/desktop",
|
"repository": "stoatchat/desktop",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user