Update GoogleTranslateClient.java #270
This file contains 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: Deploy to Ubuntu Server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
cleanup: | |
uses: ./.github/workflows/cleanup.yml | |
secrets: inherit # Наследовать секреты от основного workflow | |
deploy_user_service: | |
needs: cleanup | |
uses: ./.github/workflows/deploy_user_service.yml | |
secrets: inherit # Наследовать секреты от основного workflow | |
deploy_weather_service: | |
needs: cleanup | |
uses: ./.github/workflows/deploy_weather_service.yml | |
secrets: inherit # Наследовать секреты от основного workflow | |
deploy_tg_bot_service: | |
needs: cleanup | |
uses: ./.github/workflows/deploy_tg_bot_service.yml | |
secrets: inherit # Наследовать секреты от основного workflow |