From 5a409b3014dff1ba6bdef848c1233af2eb159d53 Mon Sep 17 00:00:00 2001 From: plasmagoat Date: Mon, 21 Jul 2025 22:38:43 +0200 Subject: [PATCH] tofu workdir --- .forgejo/workflows/tofu.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/tofu.yml b/.forgejo/workflows/tofu.yml index f150719..157dee6 100644 --- a/.forgejo/workflows/tofu.yml +++ b/.forgejo/workflows/tofu.yml @@ -25,20 +25,21 @@ jobs: - name: OpenTofu fmt id: fmt run: tofu fmt -check + working-directory: ${{ forge.workspace }}/infrastructure/proxmox continue-on-error: true - name: OpenTofu Init id: init run: tofu init - working-directory: /infrastructure/proxmox + working-directory: ${{ forge.workspace }}/infrastructure/proxmox - name: OpenTofu Validate id: validate run: tofu validate -no-color - working-directory: /infrastructure/proxmox + working-directory: ${{ forge.workspace }}/infrastructure/proxmox - name: OpenTofu Plan id: plan run: tofu plan -no-color - working-directory: /infrastructure/proxmox + working-directory: ${{ forge.workspace }}/infrastructure/proxmox continue-on-error: true