You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 11, 2022. It is now read-only.
We have semi-continuous deployment set up for the desktop app. Here's how it works:
3
+
1. Packages the desktop app for all operating systems and upload them to GitHub as a draft release with the following command:
4
4
5
-
## Automatic
5
+
```
6
+
GH_TOKEN=xyz123 yarn run release:desktop
7
+
```
6
8
7
-
1. We merge the latest changes from `alpha` to `production`
8
-
2. This prompts a CircleCI build, which packages the desktop app for all operating systems and uploads them to GitHub as a draft release. That looks something like this:
9
+
> Note: GH_TOKEN has to be a valid GitHub personal token. You can get one from your user settings.
10
+
> Note for employees: You will find the company GitHub token in 1Password under the entry for "Spectrum GitHub Bot"
11
+
12
+
2. You'll then have a draft release on GitHub that looks something like this:
9
13
10
14

11
15
@@ -19,11 +23,3 @@ We have semi-continuous deployment set up for the desktop app. Here's how it wor
19
23
20
24
As soon as it's published, the app will prompt existing users to upgrade to the newest version and download and install it for them.
21
25
22
-
## Manual
23
-
24
-
You can also do a manual deploy of the desktop apps. You will need to get a GitHub token from your personal GitHub settings, then run the following command:
0 commit comments