Skip to content

Commit c6ffbce

Browse files
committed
Try building in GitHub actions
1 parent 4c37753 commit c6ffbce

File tree

4 files changed

+200
-4
lines changed

4 files changed

+200
-4
lines changed

.github/workflows/release.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release app
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
strategy:
9+
matrix:
10+
os:
11+
- name: linux
12+
image: ubuntu-latest
13+
- name: macos
14+
image: macos-latest
15+
- name: windows
16+
image: windows-latest
17+
runs-on: ${{ matrix.os.image }}
18+
19+
steps:
20+
- name: Github checkout
21+
uses: actions/checkout@v4
22+
23+
- name: Use Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: 22
27+
28+
- run: yarn install --frozen-lockfile
29+
30+
- name: Publish app
31+
run: yarn publish
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

forge.config.ts

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { ForgeConfig } from "@electron-forge/shared-types"
22
import { MakerSquirrel } from "@electron-forge/maker-squirrel"
33
import { MakerZIP } from "@electron-forge/maker-zip"
44
import { MakerDeb } from "@electron-forge/maker-deb"
5+
import PublisherGithub from "@electron-forge/publisher-github"
56
import { VitePlugin } from "@electron-forge/plugin-vite"
67
import { FusesPlugin } from "@electron-forge/plugin-fuses"
78
import { FuseV1Options, FuseVersion } from "@electron/fuses"
@@ -62,6 +63,15 @@ const config: ForgeConfig = {
6263
[FuseV1Options.OnlyLoadAppFromAsar]: true,
6364
}),
6465
],
66+
publishers: [
67+
new PublisherGithub({
68+
repository: {
69+
name: "manager",
70+
owner: "mautrix",
71+
},
72+
prerelease: true,
73+
}),
74+
],
6575
}
6676

6777
export default config

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
2121
"@electron-forge/plugin-fuses": "^7.4.0",
2222
"@electron-forge/plugin-vite": "^7.4.0",
23+
"@electron-forge/publisher-github": "^7.4.0",
2324
"@electron/fuses": "^1.8.0",
2425
"@types/react": "^18.3.3",
2526
"@types/react-dom": "^18.3.0",
@@ -40,13 +41,13 @@
4041
},
4142
"license": "AGPL-3.0-or-later",
4243
"dependencies": {
44+
"@types/react": "npm:types-react@rc",
45+
"@types/react-dom": "npm:types-react-dom@rc",
4346
"electron-squirrel-startup": "^1.0.1",
4447
"qrcode.react": "^3.1.0",
4548
"react": "19.0.0-rc-8269d55d-20240802",
4649
"react-dom": "19.0.0-rc-8269d55d-20240802",
47-
"react-spinners": "^0.14.1",
48-
"@types/react": "npm:types-react@rc",
49-
"@types/react-dom": "npm:types-react-dom@rc"
50+
"react-spinners": "^0.14.1"
5051
},
5152
"overrides": {
5253
"@types/react": "npm:types-react@rc",

yarn.lock

+153-1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,24 @@
176176
dependencies:
177177
"@electron-forge/shared-types" "7.4.0"
178178

179+
"@electron-forge/publisher-github@^7.4.0":
180+
version "7.4.0"
181+
resolved "https://registry.yarnpkg.com/@electron-forge/publisher-github/-/publisher-github-7.4.0.tgz#8f067a93bd2a8da82ce587ab946379754b77a734"
182+
integrity sha512-hrxKNssJyU8Yuz0qv384y5RKojMG0nWeG7/kidjp8PX/RnqjGRU/JJ0Worl28g8LGiLt5R5JIfNLngLaFMn8tg==
183+
dependencies:
184+
"@electron-forge/publisher-base" "7.4.0"
185+
"@electron-forge/shared-types" "7.4.0"
186+
"@octokit/core" "^3.2.4"
187+
"@octokit/plugin-retry" "^3.0.9"
188+
"@octokit/request-error" "^2.0.5"
189+
"@octokit/rest" "^18.0.11"
190+
"@octokit/types" "^6.1.2"
191+
chalk "^4.0.0"
192+
debug "^4.3.1"
193+
fs-extra "^10.0.0"
194+
log-symbols "^4.0.0"
195+
mime-types "^2.1.25"
196+
179197
"@electron-forge/[email protected]":
180198
version "7.4.0"
181199
resolved "https://registry.yarnpkg.com/@electron-forge/shared-types/-/shared-types-7.4.0.tgz#1355b99e77d66f3e568b7b09fb9aa107d2f856f3"
@@ -629,6 +647,115 @@
629647
mkdirp "^1.0.4"
630648
rimraf "^3.0.2"
631649

650+
"@octokit/auth-token@^2.4.4":
651+
version "2.5.0"
652+
resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.5.0.tgz#27c37ea26c205f28443402477ffd261311f21e36"
653+
integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==
654+
dependencies:
655+
"@octokit/types" "^6.0.3"
656+
657+
"@octokit/core@^3.2.4", "@octokit/core@^3.5.1":
658+
version "3.6.0"
659+
resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085"
660+
integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==
661+
dependencies:
662+
"@octokit/auth-token" "^2.4.4"
663+
"@octokit/graphql" "^4.5.8"
664+
"@octokit/request" "^5.6.3"
665+
"@octokit/request-error" "^2.0.5"
666+
"@octokit/types" "^6.0.3"
667+
before-after-hook "^2.2.0"
668+
universal-user-agent "^6.0.0"
669+
670+
"@octokit/endpoint@^6.0.1":
671+
version "6.0.12"
672+
resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz#3b4d47a4b0e79b1027fb8d75d4221928b2d05658"
673+
integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==
674+
dependencies:
675+
"@octokit/types" "^6.0.3"
676+
is-plain-object "^5.0.0"
677+
universal-user-agent "^6.0.0"
678+
679+
"@octokit/graphql@^4.5.8":
680+
version "4.8.0"
681+
resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz#664d9b11c0e12112cbf78e10f49a05959aa22cc3"
682+
integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==
683+
dependencies:
684+
"@octokit/request" "^5.6.0"
685+
"@octokit/types" "^6.0.3"
686+
universal-user-agent "^6.0.0"
687+
688+
"@octokit/openapi-types@^12.11.0":
689+
version "12.11.0"
690+
resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0"
691+
integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==
692+
693+
"@octokit/plugin-paginate-rest@^2.16.8":
694+
version "2.21.3"
695+
resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e"
696+
integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==
697+
dependencies:
698+
"@octokit/types" "^6.40.0"
699+
700+
"@octokit/plugin-request-log@^1.0.4":
701+
version "1.0.4"
702+
resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85"
703+
integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==
704+
705+
"@octokit/plugin-rest-endpoint-methods@^5.12.0":
706+
version "5.16.2"
707+
resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342"
708+
integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==
709+
dependencies:
710+
"@octokit/types" "^6.39.0"
711+
deprecation "^2.3.1"
712+
713+
"@octokit/plugin-retry@^3.0.9":
714+
version "3.0.9"
715+
resolved "https://registry.yarnpkg.com/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz#ae625cca1e42b0253049102acd71c1d5134788fe"
716+
integrity sha512-r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==
717+
dependencies:
718+
"@octokit/types" "^6.0.3"
719+
bottleneck "^2.15.3"
720+
721+
"@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0":
722+
version "2.1.0"
723+
resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz#9e150357831bfc788d13a4fd4b1913d60c74d677"
724+
integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==
725+
dependencies:
726+
"@octokit/types" "^6.0.3"
727+
deprecation "^2.0.0"
728+
once "^1.4.0"
729+
730+
"@octokit/request@^5.6.0", "@octokit/request@^5.6.3":
731+
version "5.6.3"
732+
resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0"
733+
integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==
734+
dependencies:
735+
"@octokit/endpoint" "^6.0.1"
736+
"@octokit/request-error" "^2.1.0"
737+
"@octokit/types" "^6.16.1"
738+
is-plain-object "^5.0.0"
739+
node-fetch "^2.6.7"
740+
universal-user-agent "^6.0.0"
741+
742+
"@octokit/rest@^18.0.11":
743+
version "18.12.0"
744+
resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.12.0.tgz#f06bc4952fc87130308d810ca9d00e79f6988881"
745+
integrity sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==
746+
dependencies:
747+
"@octokit/core" "^3.5.1"
748+
"@octokit/plugin-paginate-rest" "^2.16.8"
749+
"@octokit/plugin-request-log" "^1.0.4"
750+
"@octokit/plugin-rest-endpoint-methods" "^5.12.0"
751+
752+
"@octokit/types@^6.0.3", "@octokit/types@^6.1.2", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0":
753+
version "6.41.0"
754+
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04"
755+
integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==
756+
dependencies:
757+
"@octokit/openapi-types" "^12.11.0"
758+
632759
633760
version "4.18.1"
634761
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.1.tgz#f0da481244b7d9ea15296b35f7fe39cd81157396"
@@ -1179,6 +1306,11 @@ base64-js@^1.3.1, base64-js@^1.5.1:
11791306
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
11801307
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
11811308

1309+
before-after-hook@^2.2.0:
1310+
version "2.2.3"
1311+
resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c"
1312+
integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==
1313+
11821314
bl@^4.1.0:
11831315
version "4.1.0"
11841316
resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
@@ -1216,6 +1348,11 @@ boolean@^3.0.1:
12161348
resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b"
12171349
integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==
12181350

1351+
bottleneck@^2.15.3:
1352+
version "2.19.5"
1353+
resolved "https://registry.yarnpkg.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91"
1354+
integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==
1355+
12191356
brace-expansion@^1.1.7:
12201357
version "1.1.11"
12211358
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -1618,6 +1755,11 @@ [email protected]:
16181755
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
16191756
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
16201757

1758+
deprecation@^2.0.0, deprecation@^2.3.1:
1759+
version "2.3.1"
1760+
resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
1761+
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
1762+
16211763
16221764
version "1.2.0"
16231765
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
@@ -2937,6 +3079,11 @@ is-path-inside@^3.0.3:
29373079
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
29383080
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
29393081

3082+
is-plain-object@^5.0.0:
3083+
version "5.0.0"
3084+
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
3085+
integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
3086+
29403087
is-regex@^1.1.4:
29413088
version "1.1.4"
29423089
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
@@ -3256,7 +3403,7 @@ [email protected]:
32563403
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
32573404
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
32583405

3259-
mime-types@~2.1.24, mime-types@~2.1.34:
3406+
mime-types@^2.1.25, mime-types@~2.1.24, mime-types@~2.1.34:
32603407
version "2.1.35"
32613408
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
32623409
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
@@ -4687,6 +4834,11 @@ unique-slug@^3.0.0:
46874834
dependencies:
46884835
imurmurhash "^0.1.4"
46894836

4837+
universal-user-agent@^6.0.0:
4838+
version "6.0.1"
4839+
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa"
4840+
integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==
4841+
46904842
universalify@^0.1.0:
46914843
version "0.1.2"
46924844
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"

0 commit comments

Comments
 (0)