From 6d6ccfea1bc40f32eece664e3799fe91a7c5bc2c Mon Sep 17 00:00:00 2001 From: SoundDrill31 <84176052+sounddrill31@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:26:10 +0530 Subject: [PATCH] Selfhosted: Set continue-on-error for upload steps and add telegram-upload step --- .github/workflows/selfhosted.yml | 8 ++++++++ 1 file changed, 8 insertions(+) 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 +