From 0fcef56846e1c72f0bdc902b7c8e648504facdfc Mon Sep 17 00:00:00 2001 From: Luis Helder Date: Fri, 12 Jul 2024 17:58:05 -0300 Subject: [PATCH] test: deploy to dev --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f94c405..196a464 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: deploy on: push: - branches: [main, dev] + branches: [main, dev, ci/iam-roles-and-aws-secrets] tags: ['v*.*.*'] env: @@ -42,6 +42,9 @@ jobs: elif [[ "${{github.base_ref}}" == "main" || "${{github.ref}}" == "refs/heads/main" ]]; then echo "Setting testnet environment" echo "environment=testnet" >> $GITHUB_OUTPUT + elif [[ "${{github.base_ref}}" == "ci/iam-roles-and-aws-secrets" || "${{github.ref}}" == "refs/heads/ci/iam-roles-and-aws-secrets" ]]; then + echo "Setting dev environment" + echo "environment=dev" >> $GITHUB_OUTPUT elif [[ "${{github.base_ref}}" == "dev" || "${{github.ref}}" == "refs/heads/dev" ]]; then echo "Setting dev environment" echo "environment=dev" >> $GITHUB_OUTPUT