diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 44d6b3a..dba6d50 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -52,7 +52,7 @@ jobs: run: terraform -chdir=terraform apply --auto-approve conditional_step: - if: ${{ inputs.clutch_env == 'test' }} + if: inputs.clutch_env == 'test' needs: setup runs-on: ubuntu-latest steps: diff --git a/.github/workflows/production-deploy.yaml b/.github/workflows/production-deploy.yaml index af516f6..bcf8f5a 100644 --- a/.github/workflows/production-deploy.yaml +++ b/.github/workflows/production-deploy.yaml @@ -8,7 +8,7 @@ jobs: build: uses: nbugden/gh-actions/.github/workflows/build.yaml@main with: - clutch_env: test + clutch_env: prod aws_default_region: ca-central-1 secrets: github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/staging-deploy.yaml b/.github/workflows/staging-deploy.yaml index 0d485bf..3619ae0 100644 --- a/.github/workflows/staging-deploy.yaml +++ b/.github/workflows/staging-deploy.yaml @@ -8,7 +8,7 @@ jobs: build: uses: nbugden/gh-actions/.github/workflows/build.yaml@main with: - clutch_env: test + clutch_env: stage aws_default_region: ca-central-1 secrets: github_token: ${{ secrets.GITHUB_TOKEN }}