You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### 2. Deploying a New Minor/Major Version (e.g., v0.29.x → v0.32.x)
45
+
46
+
1. Create a new branch for the version, e.g., `v0.32`. [See branching details below.](#branching-strategy)
47
+
2. Update the GitHub Actions workflow configuration to include this branch as a trigger. [See Github Actions details below](#github-actions-deployment-workflow).
48
+
3. Commit and push your changes to this branch.
49
+
4. Tag your commit with the new version:
50
+
```bash
51
+
git tag v0.32.1
52
+
git push origin v0.32.1
53
+
```
54
+
[See tagging and deployment details below.](#tagging-and-deployment-strategy)
55
+
5. GitHub Actions will deploy the new version, accessible at:
0 commit comments