From 83ae4b78c1da2395c1f87ca09816fed4996f21c4 Mon Sep 17 00:00:00 2001 From: Richi Date: Thu, 7 Mar 2024 12:43:21 +0100 Subject: [PATCH] test --- .github/workflows/detect-helm-instance-deployment.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/detect-helm-instance-deployment.yml b/.github/workflows/detect-helm-instance-deployment.yml index 392e725..f4f5d58 100644 --- a/.github/workflows/detect-helm-instance-deployment.yml +++ b/.github/workflows/detect-helm-instance-deployment.yml @@ -69,3 +69,13 @@ jobs: script: | core.setFailed(':heavy_exclamation_mark: We have no values file. Exiting pipeline with Fail status.') + - id: check_files + name: Check file existence + uses: thebinaryfelix/check-file-existence-action@v1 + with: + files: env.VALUES_FILE + + - name: Files exist + if: steps.check_files.outputs.exists == 'true' + # Only runs if all of the files exist + run: echo "All files exist!" \ No newline at end of file