diff options
| author | Alex <git@ajschof.me> | 2024-08-19 12:09:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 12:09:25 +0100 |
| commit | f28e4038d20b4630fafcae9a7825794e529bace2 (patch) | |
| tree | 0c378561e0dde843c0a281c692d137bb6bb0d0a7 /.github/workflows/deploy.yml | |
| parent | 5cc511d2afeea262db0db7039c8f83c123da77ea (diff) | |
| parent | 09b8b7903098a988a9a022d0ab607f8131c9c78f (diff) | |
| download | de-project-bentley-f28e4038d20b4630fafcae9a7825794e529bace2.tar.gz de-project-bentley-f28e4038d20b4630fafcae9a7825794e529bace2.zip | |
Merge branch 'development' into feature/test-extract-lambda
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 372d0b3..5672048 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,19 +1,24 @@ name: deploy-terraform on: + pull_request: + branches: + - main push: branches: - - test-ci/** # Adjust the branch based on our deployment strategy + - main + jobs: deploy-terraform: name: Deploy Terraform runs-on: ubuntu-latest - environment: test-env + #needs: run-checks (must ref on-commit.yml file) + environment: production steps: - name: Checkout Repo uses: actions/checkout@v4 - + - name: Install Terraform uses: hashicorp/setup-terraform@v3 @@ -34,4 +39,4 @@ jobs: - name: Terraform Apply working-directory: terraform - run: terraform apply --auto-approve
\ No newline at end of file + run: terraform apply --auto-approve |
