From d06b4a146b345cf32d460ce6aee8f42102ab9211 Mon Sep 17 00:00:00 2001 From: "Martin Hinshelwood nkdAgility.com" Date: Wed, 7 Aug 2024 10:31:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(main.yml):=20update=20workflow?= =?UTF-8?q?=20condition=20to=20always=20run=20steps=20regardless=20of=20nk?= =?UTF-8?q?dAgility=5FRing=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The condition for running the steps is simplified to always run if the previous steps are successful. The previous condition checking for `nkdAgility_Ring != 'Canary'` is commented out, likely to ensure the steps run in all environments for broader testing or deployment purposes. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 64a2122f6..96ecac2ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -258,7 +258,7 @@ jobs: HasChanged_docs: ${{ needs.Setup.outputs.HasChanged_docs }} HasChanged_automation: ${{ needs.Setup.outputs.HasChanged_automation }} needs: [build, Setup] - if: ${{ success() && ( needs.Setup.outputs.nkdAgility_Ring != 'Canary' ) }} + if: ${{ success() }} #&& ( needs.Setup.outputs.nkdAgility_Ring != 'Canary' ) steps: - uses: actions/download-artifact@v4 with: