diff --git a/.github/workflows/selfhosted.yml b/.github/workflows/selfhosted.yml index 496c51c0..553288f1 100644 --- a/.github/workflows/selfhosted.yml +++ b/.github/workflows/selfhosted.yml @@ -264,5 +264,13 @@ jobs: tag_name: ${{ github.run_id }} body: | Target: ${{ github.event.inputs.PRODUCT_NAME }}-${{ github.event.inputs.BUILD_TYPE }} + continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # Upload to Telegram + - name: Upload Using telegram-upload + run: | + telegram-upload ${{ github.event.inputs.DEVICE_NAME }}/recovery.img ${{ github.event.inputs.DEVICE_NAME }}/boot.img ${{ github.event.inputs.DEVICE_NAME }}/vendor_boot.img ${{ github.event.inputs.DEVICE_NAME }}/vendor.img ${{ github.event.inputs.DEVICE_NAME }}/system.img ${{ github.event.inputs.DEVICE_NAME }}/*.zip + continue-on-error: true +