Skip to content

Commit

Permalink
fix: staging/prod inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
nbugden committed Nov 10, 2021
1 parent de3e1ff commit 9359c55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 9359c55

Please sign in to comment.