Compare commits

..

1 Commits

Author SHA1 Message Date
b6b01cb70d feat: add build job
All checks were successful
Build / build (pull_request) Successful in 2m23s
- add build job that runs `make plan`
- add deploy job that runs `make apply`
- ensure make-plan also runs init target
- enable provider caching
- enable creating client.crt/client.key
- trap EXIT to cleanup temp directory
2025-10-17 13:30:04 +11:00

View File

@ -19,7 +19,15 @@ jobs:
with:
fetch-depth: 0
- name: Run Terraform Plan
- name: Fetch master branch
run: |
git fetch origin master:master
- name: Show changed files
run: |
git diff --name-only master
- name: Run Terraform Apply
env:
VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }}
run: |