From db80e7f5a23cbc226953cd13b6de159b5a927a0a Mon Sep 17 00:00:00 2001 From: Maximilian Eibl Date: Fri, 4 Sep 2026 17:34:14 +0200 Subject: [PATCH] Update README.md release examples to reference v1.0.2 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3fbf0d1..5ded354 100644 --- a/README.md +++ b/README.md @@ -331,8 +331,8 @@ Release builds are automated via two dedicated Gitea Actions workflows running c ### Publishing a Release Whenever you want to release a new version with compiled standalone binaries: ```bash -git tag v1.0.1 -git push origin v1.0.1 +git tag v1.0.2 +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).* @@ -382,6 +382,6 @@ python3 compilation/package_dist.py --target linux ``` To upload local builds directly to Gitea: ```powershell -python compilation/upload_release.py --tag v1.0.1 --token +python compilation/upload_release.py --tag v1.0.2 --token ``` *(Environment variables `GITEA_TOKEN`, `GITEA_SERVER_URL`, `GITEA_REPOSITORY`, and `GITEA_REF_NAME` are also supported automatically).*