diff --git a/.github/workflows/package-and-publish.yml b/.github/workflows/package-and-publish.yml index 0c3e2da44..16e326eff 100644 --- a/.github/workflows/package-and-publish.yml +++ b/.github/workflows/package-and-publish.yml @@ -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 diff --git a/docs/TAURI.md b/docs/TAURI.md index 5035dfbc1..42cc1b62c 100644 --- a/docs/TAURI.md +++ b/docs/TAURI.md @@ -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 | ---