From 5b5d75d0ebad80a22ca4cd21d09d0f4d2533afb9 Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Mon, 18 Aug 2025 20:05:43 +0000 Subject: [PATCH] changing working dir for plan and apply --- .gitea/workflows/ci-test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml index f118059..5d5a437 100644 --- a/.gitea/workflows/ci-test.yaml +++ b/.gitea/workflows/ci-test.yaml @@ -42,8 +42,8 @@ jobs: run: tofu init - name: Plan - working-directory: infra - run: tofu plan -chdir=iac $VAR_FILES -out=tfplan + working-directory: infra/iac + run: tofu plan $VAR_FILES -out=tfplan - name: Export tfplan working-directory: infra @@ -54,5 +54,5 @@ jobs: - name: Apply - working-directory: infra - run: tofu apply -chdir=iac $VAR_FILES -auto-approve tfplan \ No newline at end of file + working-directory: infra/iac + run: tofu apply $VAR_FILES -auto-approve tfplan \ No newline at end of file