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
3. **Push the version bump so [CI](https://github.com/WileyLabs/tdm-client/actions/workflows/ci.yml) runs:**
24
24
25
-
4. **Tag repository**
25
+
```bash
26
+
git push origin main
27
+
```
28
+
29
+
4. **Confirm build success**
30
+
- [Check CI](https://github.com/WileyLabs/tdm-client/actions/workflows/ci.yml) for the commit you just pushed (or use **Run workflow** on `workflow_dispatch`if you need a manual run).
31
+
32
+
5. **Tag repository** (after CI is green):
26
33
27
34
```bash
28
-
git tag -a v1.0.0 -m "Release version 1.0.0"
29
-
git push origin v1.0.0
35
+
git tag -a v1.1.0 -m "Release version 1.1.0"
36
+
git push origin v1.1.0
30
37
```
31
38
32
-
4. **Publish to TestPyPI:**
39
+
6. **Publish to TestPyPI:**
33
40
- Manually run [Publish-Test](https://github.com/WileyLabs/tdm-client/actions/workflows/publish-test.yml) workflow
@@ -48,4 +55,4 @@ This will be automated/improved in the future
48
55
49
56
## Pre-Releases
50
57
51
-
Pre-releases (e.g., `1.0.0-rc1`) are used for testing purposes and are only published to TestPyPI. Follow steps 1–4 above for pre-releases, but do not proceed to step 5 (publishing to PyPI).
58
+
Pre-releases (e.g., `1.1.0-rc1`) are used for testing purposes and are only published to TestPyPI. Follow steps 1–6 above for pre-releases, but do not proceed to step 7 (publishing to PyPI).
0 commit comments