diff options
| author | Alex <git@ajschof.me> | 2024-08-16 15:37:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-16 15:37:46 +0100 |
| commit | 9d189d7c8c4fae09ece780521ab9c10935be8aaf (patch) | |
| tree | 03938087ec6c91a744ea54eae056dea0eece549e /.github/workflows/deploy.yml | |
| parent | e153f2072eafca2c83a84e2c4210c46a40dabaf4 (diff) | |
| parent | eb3353ea0df1eee2df2c6a9a9efad121e56e1790 (diff) | |
| download | de-project-bentley-9d189d7c8c4fae09ece780521ab9c10935be8aaf.tar.gz de-project-bentley-9d189d7c8c4fae09ece780521ab9c10935be8aaf.zip | |
Merge branch 'development' into extract_lambda_refactoring
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 |
