diff options
author | Chocobozzz <me@florianbigard.com> | 2019-05-14 10:35:22 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-05-14 10:58:28 +0200 |
commit | 39e6a5cbec21d5fa2e29be3e6f1c3e88726136ec (patch) | |
tree | e7907269733fc130b06f0d427311fb20d8205b96 /support/doc/development | |
parent | 2888c12b3b8ffe2306df2211efa0f7a12a1285bb (diff) | |
download | PeerTube-39e6a5cbec21d5fa2e29be3e6f1c3e88726136ec.tar.gz PeerTube-39e6a5cbec21d5fa2e29be3e6f1c3e88726136ec.tar.zst PeerTube-39e6a5cbec21d5fa2e29be3e6f1c3e88726136ec.zip |
Document how I do releases
Diffstat (limited to 'support/doc/development')
-rw-r--r-- | support/doc/development/release.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/support/doc/development/release.md b/support/doc/development/release.md new file mode 100644 index 000000000..1b027faf7 --- /dev/null +++ b/support/doc/development/release.md | |||
@@ -0,0 +1,19 @@ | |||
1 | # Release | ||
2 | |||
3 | * Fix remaining important bugs | ||
4 | * Update [/CHANGELOG.md](/CHANGELOG.md) | ||
5 | * Check migrations: | ||
6 | * `npm run clean:server:test` | ||
7 | * `git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | ||
8 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization | ||
9 | * `git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | ||
10 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and check migrations does not fail | ||
11 | * 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 | ||
12 | * Update https://peertube2.cpy.re and check it works correctly | ||
13 | * Check Travis tests are green | ||
14 | * Run E2E tests: `BROWSERSTACK_USER=my_user BROWSERSTACK_KEY=my_key npm run e2e` | ||
15 | * Release: `GITHUB_TOKEN=my_token npm run release -- 1.x.x` | ||
16 | * Check the release is okay: https://github.com/Chocobozzz/PeerTube/releases | ||
17 | * Update https://peertube3.cpy.re and check it works correctly | ||
18 | * Update all other instances and check it works correctly | ||
19 | * Communicate on Mastodon & peertube-admin mailing list | ||