From 0d744251f56a43a858414229c5e945f6a41e5306 Mon Sep 17 00:00:00 2001 From: Alexandra Kirk Date: Mon, 14 Oct 2024 11:37:38 -0600 Subject: [PATCH] typo in define-environment --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 36198a62..aee2878b 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -17,7 +17,7 @@ jobs: - name: Set the environment based on the branch id: define_environment run: | - if [ "${{ github.ref }}" = "refs/heads/dev" ]; then + if [ "${{ github.ref }}" = "refs/heads/develop" ]; then echo "env_name=dev" >> $GITHUB_OUTPUT fi - name: Print the environment