1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00

Update cli_test.yml

This commit is contained in:
Anton Titovets 2024-03-22 13:08:12 +03:00 committed by GitHub
parent 13be60d7e6
commit c29a29e5d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ jobs:
- name: Выполнить УдалитьWebhook - name: Выполнить УдалитьWebhook
if: ${{ cancelled() }} == false if: ${{ cancelled() }} == false
run: ./oint_bin telegram УстановитьWebhook --token ${{ env.json_Telegram_Token }} --url ${{ env.json_Telegram_URL }} run: ./oint_bin telegram УдалитьWebhook --token ${{ env.json_Telegram_Token }} --url ${{ env.json_Telegram_URL }}
- name: Выполнить ОтправитьТекстовоеСообщение - name: Выполнить ОтправитьТекстовоеСообщение
if: ${{ cancelled() }} == false if: ${{ cancelled() }} == false
@ -146,6 +146,20 @@ jobs:
--text "Тестовое сообщение" \ --text "Тестовое сообщение" \
--path ${{ env.json_Document }} --path ${{ env.json_Document }}
- name: Выполнить ОтправитьМедиагруппу
if: ${{ cancelled() }} == false
run: |
echo " { \
\"${{ env.json_Picture }}\" : \"photo\" \
\"${{ env.json_Picture2 }}\" : \"photo\" \
} " > mediagroup.json
./oint_bin telegram ОтправитьМедиагруппу \
--token ${{ env.json_Telegram_Token }} \
--id ${{ env.json_Telegram_ChatID }} \
--text "Тестовое сообщение" \
--path mediagroup.json
Clear-Cache: Clear-Cache:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Testing-Telegram] needs: [Testing-Telegram]