Update CI/CD README for v4.9.0 release instructions

Replaces references to v4.8.0 with v4.9.0 in the CI/CD workflow documentation to reflect the latest release process.
This commit is contained in:
oop7
2025-10-25 15:53:29 +03:00
parent 115718c396
commit f9c8b80bfe
+4 -4
View File
@@ -5,7 +5,7 @@ This repository uses GitHub Actions to automatically build and release YTSage fo
## How It Works ## How It Works
### Trigger ### Trigger
The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.8.0`, `v4.9.1`). The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.0`, `v4.9.1`).
### Build Process ### Build Process
1. **Setup**: Uses Python 3.13.6 on all platforms 1. **Setup**: Uses Python 3.13.6 on all platforms
@@ -21,13 +21,13 @@ The workflow is triggered when you push a git tag that starts with `v` (e.g., `v
2. **Commit your changes**: 2. **Commit your changes**:
```bash ```bash
git add . git add .
git commit -m "Release v4.8.0" git commit -m "Release v4.9.0"
``` ```
3. **Create and push a tag**: 3. **Create and push a tag**:
```bash ```bash
git tag v4.8.0 git tag v4.9.0
git push origin v4.8.0 git push origin v4.9.0
``` ```
4. **Watch the action**: Go to Actions tab in GitHub to monitor progress 4. **Watch the action**: Go to Actions tab in GitHub to monitor progress