]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/development/release.md
Bumped to version v3.0.1
[github/Chocobozzz/PeerTube.git] / support / doc / development / release.md
CommitLineData
39e6a5cb
C
1# Release
2
3 * Fix remaining important bugs
4 * Update [/CHANGELOG.md](/CHANGELOG.md)
5 * Check migrations:
2f398c19
C
6```
7npm run clean:server:test
8git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
9NODE_APP_INSTANCE=6 NODE_ENV=test npm run start
10git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
11NODE_APP_INSTANCE=6 NODE_ENV=test npm run start
12```
39e6a5cb
C
13 * Run `rm -r node_modules && rm -r client/node_modules && yarn install --pure-lockfile && npm run build` to see if all the supported languages compile correctly
14 * Update https://peertube2.cpy.re and check it works correctly
2284f202 15 * Check CI tests are green
39e6a5cb
C
16 * Run E2E tests: `BROWSERSTACK_USER=my_user BROWSERSTACK_KEY=my_key npm run e2e`
17 * Release: `GITHUB_TOKEN=my_token npm run release -- 1.x.x`
ac043122 18 * Create a dedicated branch: `git checkout -b release/1.x.x && git push origin release/1.x.x`
39e6a5cb
C
19 * Check the release is okay: https://github.com/Chocobozzz/PeerTube/releases
20 * Update https://peertube3.cpy.re and check it works correctly
21 * Update all other instances and check it works correctly
8043befa 22 * Communicate