[desktop] RC (#1654)

This commit is contained in:
Manav Rathi 2024-05-08 11:22:49 +05:30 committed by GitHub
commit 0178c64e34
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -40,6 +40,11 @@ jobs:
with: with:
node-version: 20 node-version: 20
- name: Increase yarn timeout
# `yarn install` times out sometimes on the Windows runner,
# resulting in flaky builds.
run: yarn config set network-timeout 900000 -g
- name: Install dependencies - name: Install dependencies
run: yarn install run: yarn install

View file

@ -22,7 +22,9 @@ intended to be published, but serve as test release candidates.
The workflow for making such "rc" builds is: The workflow for making such "rc" builds is:
1. Update `package.json` in the source repo to use version `1.x.x-rc`. Create a 1. Update `package.json` in the source repo to use version `1.x.x-rc`. Create a
new draft release in the release repo with tag `v1.x.x-rc`. new draft release in the release repo with title `1.x.x-rc`. In the tag
input enter `v1.x.x-rc` and select the option to "create a new tag on
publish".
2. Push code to the `desktop/rc` branch in the source repo. 2. Push code to the `desktop/rc` branch in the source repo.