[Tauri] Change release title (#6300)

This commit is contained in:
zubiden 2025-09-30 16:52:30 +02:00 committed by Alexander Zinchuk
parent a57f505232
commit b5ed15f35f
2 changed files with 4 additions and 5 deletions

View File

@ -43,8 +43,8 @@ jobs:
id: extract-version
run: |
PACKAGE_VERSION=$(grep -m1 '^version' tauri/Cargo.toml | sed -E 's/.*"([^"]+)".*/\1/')
TAG_NAME="tauri_v${PACKAGE_VERSION}"
RELEASE_NAME="Tauri v${PACKAGE_VERSION}"
TAG_NAME="air_v${PACKAGE_VERSION}"
RELEASE_NAME="Telegram Air v${PACKAGE_VERSION}"
echo "package-version=$PACKAGE_VERSION" >> $GITHUB_OUTPUT
echo "tag-name=$TAG_NAME" >> $GITHUB_OUTPUT
echo "release-name=$RELEASE_NAME" >> $GITHUB_OUTPUT

View File

@ -127,10 +127,9 @@ The build and release process for a Tauri application is managed using a GitHub
| **Variable Name** | **Description** |
|----------------------|-------------------------------------------------------------------------------------------------------------------------------|
| `PUBLISH_REPO_TAURI` | `{OWNER}/{REPO}` repository where published releases with artifacts will be pushed. |
| `PUBLISH_REPO` | `{OWNER}/{REPO}` repository where published releases with artifacts will be pushed. |
| `NODE_VERSION` | Node.js version on which NPM modules installation and Tauri build should happen. |
| `BASE_URL_TAURI` | Remote URL from which application content will be loaded instead of the local index.html file, if the Auto-Updates feature is enabled in user settings. |
| `WITH_UPDATER` | Include `updater` plugin. Check Secrets section for the required env parameters
| `BASE_URL` | Remote URL from which application content will be loaded |
---