Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 961 Bytes

File metadata and controls

39 lines (27 loc) · 961 Bytes

Flutter Gateway SDK

Deployment

To deploy a new version of the package:

  1. Create a release branch

    git checkout -b release/{scg | loans}/M.m.p
  2. Make changes Update the package code as needed for the release.

  3. Make the chore(prod) commit with the correct version Update the version in pubspec.yaml and commit:

    git add pubspec.yaml
    
    git commit -m "chore(prod): scg:M.m.p"
    # OR
    git commit -m "chore(prod): loans:M.m.p"
  4. Create a tag and push Create a tag matching the pubspec version with the appropriate prefix:

    git tag scg-M.m.p
    # OR
    git tag scloans-M.m.p
    
    git push origin <tag-name>
  5. Run the publish workflow Go to GitHub Actions and manually trigger the "🚀 Publish" workflow on the created tag. The workflow will not work on branches - it must be run on a tag.