diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-15 15:34:03 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-15 15:34:03 +0100 |
| commit | 6964625c65ae1552b8182891cf47997e480cce5e (patch) | |
| tree | 948e7aab3c0f1064ea4f986c89b73adc19c76971 /.github/workflows/on-commit.yml | |
| parent | 3ee88c87fbae7e9968c4fc7f9aae5e7f28581aad (diff) | |
| download | de-project-bentley-6964625c65ae1552b8182891cf47997e480cce5e.tar.gz de-project-bentley-6964625c65ae1552b8182891cf47997e480cce5e.zip | |
fix(ci): correct terraform folder path
Diffstat (limited to '.github/workflows/on-commit.yml')
| -rw-r--r-- | .github/workflows/on-commit.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/on-commit.yml b/.github/workflows/on-commit.yml index e4eb4f8..355729e 100644 --- a/.github/workflows/on-commit.yml +++ b/.github/workflows/on-commit.yml @@ -33,11 +33,11 @@ jobs: with: terraform_version: latest - name: 'Terraform: Formatting' - working-directory: ./terraform + working-directory: terraform run: terraform fmt -check -recursive - name: 'Terraform: Initialise' - working-directory: ./terraform + working-directory: terraform run: terraform init -backend=false - name: 'Terraform: Validate' - working-directory: ./terraform + working-directory: terraform run: terraform validate
\ No newline at end of file |
