Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 1.36 KB

RELEASE.md

File metadata and controls

13 lines (12 loc) · 1.36 KB

Guide on releasing a new version

  1. Merge in the changeset PR into main, making sure to cancel both the release and publish github actions from that merge.
  2. Pull the changes locally into main
  3. Run pnpm i which will update the pnpm lock file with the new versions
  4. create a commit with "Release 3.x.x" and push. This will build and release the packages
  5. Create a git tag on that release commit with v.docker.3.x.x and push the tag to origin. This will publish the v3.x.x docker image to GitHub Container Registry.
  6. Once the image is built and pushed, create a new GitHub release and select the tag you just created, along with the previous tag that was released.
  7. This will generate some release notes. Edit out the package changes and leave only the server changes.
  8. Name the release @trigger.dev/docker@3.x.x
  9. Include the package link (e.g. https://github.com/triggerdotdev/trigger.dev/pkgs/container/trigger.dev/278459584?tag=v3.x.x)
  10. Once the packages have been published, head over to the v2-legacy repo and follow the instructions in the README for creating a matching release.
  11. Before deploying to cloud, compare the differences in the previously created release and double check to see if there are any migrations with indexes created concurrently, and make sure to run those before deploying.