Sha256: f8dae602adb479d4c07fda0aa1f293ec59064d149a74bcf6a9e411e9e4eaeb79

Contents?: true

Size: 1013 Bytes

Versions: 1

Compression:

Stored size: 1013 Bytes

Contents

```bash
# Install gems for exec commands
bundle install

# Run all tests
bundle exec rake test

# Create a release branch
git checkout master
git pull
git checkout -b release-X.X.X
git push --set-upstream origin release-X.X.X

# Update the version number
bundle exec gem bump --version x.y.z

# Generate the changelog
github_changelog_generator -t $GITHUB_READ_TOKEN
# Review the changelog
# Remove "unreleased" section
# Make sure the tags are ordered

# Commit, push, and create a PR for this release
git commit -am "Release vX.X.X"
git push --set-upstream origin release-X.X.X
# Add related milestone
# Create PR on GitHub and assign for review
# Merge/rebase and delete branch once approved

# Create and add a tag
git checkout master
git pull
bundle exec gem tag
# Create a new release from this tag on GitHub using markdown from the changelog

# Make sure you are an author for this gem here https://rubygems.org/gems/auth0/
# Rubygems token can be updated in ~/.gem/credentials
bundle exec gem release
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
auth0-4.7.0 DEPLOYMENT.md