Update README.md release examples to reference v1.0.2
CI Test Suite / Run Component Tests & Pipeline Verification (push) Successful in 2m16s

This commit is contained in:
2026-09-04 17:34:14 +02:00
parent 1562285034
commit db80e7f5a2
+3 -3
View File
@@ -331,8 +331,8 @@ Release builds are automated via two dedicated Gitea Actions workflows running c
### Publishing a Release ### Publishing a Release
Whenever you want to release a new version with compiled standalone binaries: Whenever you want to release a new version with compiled standalone binaries:
```bash ```bash
git tag v1.0.1 git tag v1.0.2
git push origin v1.0.1 git push origin v1.0.2
``` ```
*(You can also trigger builds manually via the Gitea UI using the **Run workflow** button (`workflow_dispatch`) on either workflow).* *(You can also trigger builds manually via the Gitea UI using the **Run workflow** button (`workflow_dispatch`) on either workflow).*
@@ -382,6 +382,6 @@ python3 compilation/package_dist.py --target linux
``` ```
To upload local builds directly to Gitea: To upload local builds directly to Gitea:
```powershell ```powershell
python compilation/upload_release.py --tag v1.0.1 --token <YOUR_GITEA_TOKEN> python compilation/upload_release.py --tag v1.0.2 --token <YOUR_GITEA_TOKEN>
``` ```
*(Environment variables `GITEA_TOKEN`, `GITEA_SERVER_URL`, `GITEA_REPOSITORY`, and `GITEA_REF_NAME` are also supported automatically).* *(Environment variables `GITEA_TOKEN`, `GITEA_SERVER_URL`, `GITEA_REPOSITORY`, and `GITEA_REF_NAME` are also supported automatically).*