Localize Telegram Bot #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Localize Telegram Bot | |
| description: This workflow localizes the Telegram Bot (commands, descriptions, etc.) | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| setup-telegram-bot: | |
| name: Localize Telegram Bot | |
| runs-on: ubuntu-latest | |
| environment: production | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run script file | |
| run: | | |
| chmod +x ./scripts/localize_telegram_bot.sh | |
| ./scripts/localize_telegram_bot.sh | |
| env: | |
| CAPY_TELEGRAM_BOT_TOKEN: ${{ secrets.CAPY_TELEGRAM_BOT_TOKEN }} | |
| shell: bash |