Option 1: Auto-bump patch
./release.shThis will bump the patch version (e.g., v1.2.3 -> v1.2.4) and push the tag.
Option 2: Specify version type
./release.sh patch # v1.2.3 -> v1.2.4
./release.sh minor # v1.2.3 -> v1.3.0
./release.sh major # v1.2.3 -> v2.0.0Option 3: Specify exact version
./release.sh v1.5.0Option 4: Manual tag (for colleagues who prefer)
git tag v1.5.0
git push origin v1.5.0All options trigger the same GitHub Action which builds, uploads to S3, and invalidates CloudFront.
Watch progress at: https://github.com/letsdiscodev/cli/actions
AWS_ACCESS_KEY_IDAWS_SECRET_ACCESS_KEYAWS_CLOUDFRONT_DISTRIBUTION_ID
# gotta build first!
npm run build
npm run readme
# then, go to the docs.letsdisco.dev repo and git add pushNOTE: annoyingly, the words "import" and "export" cannot appear at the start of the lines, otherwise the mdx parser gets confused. manually replace them with " import" and " export"