Add Telegram API credentials to GitHub Actions workflow

- Included `TELEGRAM_API_ID` and `TELEGRAM_API_HASH` as environment variables in the `package-and-publish.yml` workflow to facilitate Telegram integration.
- Removed the `dotenvy` dependency from `Cargo.toml` and `Cargo.lock` to streamline the project and eliminate unnecessary packages.
This commit is contained in:
Steven Enamakel
2026-02-05 22:19:37 +05:30
parent caa85528b5
commit f8f202c494
3 changed files with 2 additions and 10 deletions
@@ -305,6 +305,8 @@ jobs:
uses: tauri-apps/tauri-action@v0
id: build-tauri
env:
TELEGRAM_API_ID: ${{ secrets.VITE_TELEGRAM_API_ID }}
TELEGRAM_API_HASH: ${{ secrets.VITE_TELEGRAM_API_HASH }}
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE_BASE64 }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}