diff --git a/.gitea/workflows/deploy-infrastructure.yml b/.gitea/workflows/deploy-infrastructure.yml index 63f4255..6018871 100644 --- a/.gitea/workflows/deploy-infrastructure.yml +++ b/.gitea/workflows/deploy-infrastructure.yml @@ -42,7 +42,12 @@ jobs: - name: Setup OpenTofu uses: opentofu/setup-opentofu@v1 - - name: OpenTofu Init & Apply - run: | - tofu init - tofu apply -auto-approve \ No newline at end of file + - name: OpenTofu Init + run: tofu init + + # For debugging. + - name: OpenTofu Plan + run: tofu plan + + - name: OpenTofu Apply + run: tofu apply -auto-approve \ No newline at end of file