diff options
Diffstat (limited to 'support/doc/development/release.md')
-rw-r--r-- | support/doc/development/release.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/support/doc/development/release.md b/support/doc/development/release.md index f8d041cfe..88b434efa 100644 --- a/support/doc/development/release.md +++ b/support/doc/development/release.md | |||
@@ -3,11 +3,13 @@ | |||
3 | * Fix remaining important bugs | 3 | * Fix remaining important bugs |
4 | * Update [/CHANGELOG.md](/CHANGELOG.md) | 4 | * Update [/CHANGELOG.md](/CHANGELOG.md) |
5 | * Check migrations: | 5 | * Check migrations: |
6 | * `npm run clean:server:test` | 6 | ``` |
7 | * `git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 7 | npm run clean:server:test |
8 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization | 8 | git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
9 | * `git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 9 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start |
10 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and check migrations do not fail | 10 | git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
11 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start | ||
12 | ``` | ||
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 | 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 |
12 | * Update https://peertube2.cpy.re and check it works correctly | 14 | * Update https://peertube2.cpy.re and check it works correctly |
13 | * Check CI tests are green | 15 | * Check CI tests are green |