chore: Set working directory
Some checks failed
tofu plan k8s-wheatley / tofu-plan-k8s-wheatley (pull_request) Failing after 7s

This commit is contained in:
Peter 2025-11-29 11:15:28 +01:00
parent 40fcbe3486
commit 470b6dcb8e
Signed by: Peter
SSH key fingerprint: SHA256:B5tYaxBExaDm74r1px9iVeZ6F/ZDiyiy9SbBqfZYrvg

View file

@ -7,7 +7,10 @@ on:
branches: branches:
- main - main
# paths: # paths:
# - pve01.wheatley.in/k8s-whealtey/** # - pve01.wheatley.in/k8s-wheatley/**
env:
TOFU_DIR: pve01.wheatley.in/k8s-wheatley
jobs: jobs:
tofu-plan-k8s-wheatley: tofu-plan-k8s-wheatley:
@ -19,17 +22,21 @@ jobs:
- name: OpenTofu fmt - name: OpenTofu fmt
id: fmt id: fmt
run: tofu fmt -check run: tofu fmt -check
working-directory: ${{ env.TOFU_DIR }}
continue-on-error: true continue-on-error: true
- name: OpenTofu Init - name: OpenTofu Init
id: init id: init
run: tofu init run: tofu init
working-directory: ${{ env.TOFU_DIR }}
- name: OpenTofu Validate - name: OpenTofu Validate
id: validate id: validate
run: tofu validate -no-color run: tofu validate -no-color
working-directory: ${{ env.TOFU_DIR }}
- name: OpenTofu Plan - name: OpenTofu Plan
id: plan id: plan
run: tofu plan -no-color run: tofu plan -no-color
working-directory: ${{ env.TOFU_DIR }}
continue-on-error: true continue-on-error: true