terraform fmt
All checks were successful
Gitea Actions Demo / Terraform Plan (push) Successful in 40s

This commit is contained in:
MichaelFisher1997 2025-04-17 17:06:33 +01:00
parent feb21cadfa
commit e968321c39

View File

@ -1,5 +1,5 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
run-name: ${{ gitea.actor }} is deploying with Terraform 🚀
on:
push:
@ -15,6 +15,10 @@ jobs:
contents: read
pull-requests: write
env:
TF_VAR_TS_AUTHKEY: ${{ secrets.TAILSCALE_KEY }}
TF_VAR_ssh_key: ${{ secrets.SSH_PUBLIC_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
@ -33,12 +37,11 @@ jobs:
working-directory: terraform
run: terraform init
- name: Terraform Plan
working-directory: terraform
run: terraform plan
run: terraform plan
- name: Terraform Apply
working-directory: terraform
run: terraform apply -auto-approve
run: terraform apply -auto-approve