From c99b9b76ac6e826c9a88562d7e4fa42f2398e78c Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:42:49 +0200 Subject: [PATCH] Update CI/CD README for v4.9.5 release Changed example version numbers in CI/CD documentation from v4.9.2 to v4.9.5 to reflect the latest release process. --- .github/CI_CD_README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CI_CD_README.md b/.github/CI_CD_README.md index 76aa7cc..343ee55 100644 --- a/.github/CI_CD_README.md +++ b/.github/CI_CD_README.md @@ -5,7 +5,7 @@ This repository uses GitHub Actions to automatically build and release YTSage fo ## How It Works ### Trigger -The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.2`, `v4.9.2`). +The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.5`, `v4.9.5`). ### Build Process 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**: ```bash git add . - git commit -m "Release v4.9.2" + git commit -m "Release v4.9.5" ``` 3. **Create and push a tag**: ```bash - git tag v4.9.2 - git push origin v4.9.2 + git tag v4.9.5 + git push origin v4.9.5 ``` 4. **Watch the action**: Go to Actions tab in GitHub to monitor progress