From d4e12ac558ca21865ba94b60fc1b08932bf6653e Mon Sep 17 00:00:00 2001 From: Megan Davidson Date: Tue, 21 Nov 2023 10:07:59 +1300 Subject: [PATCH] fix: test --- .github/workflows/test.yml | 2 +- infra/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2dcec1d93..b66dcef64 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: id: get-changes run: | mapfile -d '' modified_infra_files < <(git diff --name-only -z ${{ github.event.before }} ${{ github.event.after }} -- "infra/*") - echo $modified_infra_files + echo "${#modified_infra_files[@]}" if [[ "${#modified_infra_files[@]}" -ge 1 ]]; then echo "infra_change=true" >> "$GITHUB_OUTPUT" else diff --git a/infra/README.md b/infra/README.md index 035f2e1af..477f68b04 100644 --- a/infra/README.md +++ b/infra/README.md @@ -1,5 +1,5 @@ # Topo-Workflows Infrastructure -test, test +test, test, test The infrastructure running the workflows is mainly based on a Kubernetes (AWS EKS) cluster and Argo Workflows. Generally all Kubernetes resources are defined with [`cdk8s`](https://cdk8s.io/) and anything that needs AWS interactions such as service accounts are defined with [`aws-cdk`](https://aws.amazon.com/cdk/).