telegram-action icon indicating copy to clipboard operation
telegram-action copied to clipboard

APK not deploy

Open SGCEntertainment opened this issue 1 year ago • 1 comments

. . //Build process

  • uses: actions/upload-artifact@v2 with: name: build-Android path: ${{ github.workspace }}/build/Android . . . .

  • name: Checkout code uses: actions/checkout@v2

        - uses: actions/download-artifact@v2
          with:
            name: build-Android
            path: ${{ github.workspace }}/build/Android
    
        - name: send telegram message
          uses: appleboy/telegram-action@master
          with:
            to: ${{ secrets.TELEGRAM_ID }}
            token: ${{ secrets.TELEGRAM_TOKEN }}
            message: Файлы загружены на диск (${{ secrets.APP_NAME }})
            document: ${{ github.workspace }}/build/Android/test.apk
    

Telegram sends only the text of the message, no errors

SGCEntertainment avatar Aug 06 '22 11:08 SGCEntertainment