From c8bf771bef21c96bb2a9f32d61a2b590f4dd24ac Mon Sep 17 00:00:00 2001 From: fenix-gitea-admin Date: Tue, 19 Aug 2025 16:42:36 +0000 Subject: [PATCH] Update .gitea/workflows/ci-test.yaml --- .gitea/workflows/ci-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml index add6ccb..1e7b240 100644 --- a/.gitea/workflows/ci-test.yaml +++ b/.gitea/workflows/ci-test.yaml @@ -50,16 +50,16 @@ jobs: for f in ../secrets/secrets/*.auto.tfvars; do VAR_FILES="$VAR_FILES -var-file=$f" done - tofu plan $VAR_FILES -out=tfplan + tofu plan $VAR_FILES -out=./tfplan - name: Export tfplan working-directory: infra/iac uses: actions/upload-artifact@v4 with: name: tofu-plan - path: tfplan + path: ./tfplan - name: Apply working-directory: infra/iac run: | - tofu apply -auto-approve tfplan \ No newline at end of file + tofu apply -auto-approve ./tfplan \ No newline at end of file