From a76f6cd937bf3c86deeb4475702df156059dae53 Mon Sep 17 00:00:00 2001 From: bbhtt Date: Tue, 1 Oct 2024 09:17:29 +0530 Subject: [PATCH] ci: Add continue-on-error without this the update-failed step does not run --- .github/workflows/update-flatpak-builder-docs.yml | 1 + .github/workflows/update-flatpak-docs.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/update-flatpak-builder-docs.yml b/.github/workflows/update-flatpak-builder-docs.yml index cf000e3c..a7d4b93c 100644 --- a/.github/workflows/update-flatpak-builder-docs.yml +++ b/.github/workflows/update-flatpak-builder-docs.yml @@ -35,6 +35,7 @@ jobs: id: vercomp run: | appstreamcli vercmp $NEW_FLATPAK_BUILDER_VERSION gt $OLD_FLATPAK_BUILDER_VERSION + continue-on-error: true - name: Update failed if: ${{ steps.vercomp.outcome == 'failure' }} diff --git a/.github/workflows/update-flatpak-docs.yml b/.github/workflows/update-flatpak-docs.yml index 06e9d116..89330342 100644 --- a/.github/workflows/update-flatpak-docs.yml +++ b/.github/workflows/update-flatpak-docs.yml @@ -35,6 +35,7 @@ jobs: id: vercomp run: | appstreamcli vercmp $NEW_FLATPAK_VERSION gt $OLD_FLATPAK_VERSION + continue-on-error: true - name: Update failed if: ${{ steps.vercomp.outcome == 'failure' }}