1
0
Fork 0
peertube/support/doc/development/release.md

39 lines
1.5 KiB
Markdown
Raw Normal View History

2019-05-14 08:35:22 +00:00
# Release
2022-09-09 09:38:51 +00:00
## PeerTube
2019-05-14 08:35:22 +00:00
* Fix remaining important bugs
2022-09-13 08:33:57 +00:00
* Ensure French translation is 100% (for the screens in the JoinPeerTube blog post)
2019-05-14 08:35:22 +00:00
* Update [/CHANGELOG.md](/CHANGELOG.md)
* Check migrations:
2020-05-14 11:47:03 +00:00
```
npm run clean:server:test
git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
2021-11-30 07:36:34 +00:00
NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
2020-05-14 11:47:03 +00:00
git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
2021-11-30 07:36:34 +00:00
NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
2020-05-14 11:47:03 +00:00
```
2021-03-04 09:05:07 +00:00
* Run `rm -rf node_modules && rm -rf client/node_modules && yarn install --pure-lockfile && npm run build` to see if all the supported languages compile correctly
2019-05-14 08:35:22 +00:00
* Update https://peertube2.cpy.re and check it works correctly
2019-07-29 09:59:29 +00:00
* Check CI tests are green
2021-11-24 09:49:12 +00:00
* Run BrowserStack **and** local E2E tests
2019-05-14 08:35:22 +00:00
* Release: `GITHUB_TOKEN=my_token npm run release -- 1.x.x`
* Upload `tar.xz` on https://builds.joinpeertube.org/release
2019-05-14 11:59:10 +00:00
* Create a dedicated branch: `git checkout -b release/1.x.x && git push origin release/1.x.x`
2019-05-14 08:35:22 +00:00
* Check the release is okay: https://github.com/Chocobozzz/PeerTube/releases
* Update https://peertube3.cpy.re and check it works correctly
* Update all other instances and check it works correctly
2021-03-12 15:20:48 +00:00
* After a couple of days, update https://joinpeertube.org/api/v1/versions.json
2022-09-09 09:38:51 +00:00
## @peertube/embed-api
2023-07-10 14:41:08 +00:00
At the root of PeerTube:
2022-09-09 09:38:51 +00:00
```
2023-07-10 14:41:08 +00:00
cd client/src/standalone/embed-player-api
2022-09-09 09:38:51 +00:00
npm version patch
2023-07-10 14:41:08 +00:00
cd ../../../../
npm run release-embed-api
2022-09-09 09:38:51 +00:00
```