Compare commits

...

6 Commits

Author SHA1 Message Date
izzy 864571df56 fix: include empty cert pass 2025-10-08 17:51:45 +01:00
izzy 2cf64b556f ci: actually provide the github token secret 2025-10-08 17:41:31 +01:00
izzy 55ac9a4596 ci: ensure token can write (publish) to repo 2025-10-08 17:39:00 +01:00
izzy ec7adaafe3 chore: disable flatpak build because this was for testing anyways 2025-10-08 17:36:36 +01:00
izzy b1c702a033 ci: checkout assets 2025-10-08 17:31:12 +01:00
izzy 6e9ef636b6 ci: use pnpm specified in package.json 2025-10-08 17:29:18 +01:00
3 changed files with 69 additions and 60 deletions
+10 -4
View File
@@ -9,20 +9,24 @@ jobs:
build-and-release:
name: Build App
runs-on: ${{ matrix.os }}
permissions:
contents: write
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout (with submodules)
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Checkout assets
run: git -c submodule."assets".update=checkout submodule update --init assets
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Install Node.js
@@ -42,3 +46,5 @@ jobs:
pnpm run make
fi
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+3
View File
@@ -35,6 +35,7 @@ const config: ForgeConfig = {
rebuildConfig: {},
makers: [
new MakerAppX({
certPass: "",
packageExecutable: `app\\${STRINGS.execName}.exe`,
publisher: "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
}),
@@ -51,6 +52,7 @@ const config: ForgeConfig = {
copyright: "Copyright (C) 2025 Revolt Platforms LTD",
}),
new MakerZIP({}),
...[
new MakerFlatpak({
options: {
id: "chat.stoat.stoat-desktop",
@@ -109,6 +111,7 @@ const config: ForgeConfig = {
"files"
> */
}),
].slice(0, 0), // disable Flatpak build
new MakerDeb({
options: {
productName: STRINGS.name,
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "stoat-desktop",
"productName": "stoat-desktop",
"version": "1.1.0",
"version": "1.1.8",
"main": ".vite/build/main.js",
"repository": "stoatchat/desktop",
"scripts": {