cluster-state/.gitea/workflows/deploy.yaml
2024-06-03 21:42:32 +01:00

21 lines
431 B
YAML

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Terraform Init
run: |
terraform init -input=false
- name: Terraform Plan
run: |
terraform plan -out=tfplan -input=false
- name: Terraform Apply
run: |
terraform apply -input=false tfplan