ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

release.md 1.5 KiB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Release
  2. ## PeerTube
  3. * Fix remaining important bugs
  4. * Ensure French translation is 100% (for the screens in the JoinPeerTube blog post)
  5. * Update [/CHANGELOG.md](/CHANGELOG.md)
  6. * Check migrations:
  7. ```
  8. npm run clean:server:test
  9. git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
  10. NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
  11. git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server
  12. NODE_APP_INSTANCE=6 NODE_ENV=test node dist/server --benchmark-startup
  13. ```
  14. * 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
  15. * Update https://peertube2.cpy.re and check it works correctly
  16. * Check CI tests are green
  17. * Run BrowserStack **and** local E2E tests
  18. * Release: `GITHUB_TOKEN=my_token npm run release -- 1.x.x`
  19. * Update `openapi.yaml` version
  20. * Upload `tar.xz` on https://builds.joinpeertube.org/release
  21. * Create a dedicated branch: `git checkout -b release/1.x.x && git push origin release/1.x.x`
  22. * Check the release is okay: https://github.com/Chocobozzz/PeerTube/releases
  23. * Update https://peertube3.cpy.re and check it works correctly
  24. * Update all other instances and check it works correctly
  25. * After a couple of days, update https://joinpeertube.org/api/v1/versions.json
  26. ## @peertube/embed-api
  27. At the root of PeerTube:
  28. ```
  29. cd client/src/standalone/embed-player-api
  30. npm version patch
  31. cd ../../../../
  32. npm run release-embed-api
  33. ```