diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 7d4aa1c..5fe9af4 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -99,8 +99,10 @@ jobs: - name: Save Terraform Outputs if: github.ref == 'refs/heads/main' && github.event_name == 'push' + run: | + mkdir -p outputs + terraform output -json > outputs/terraform_outputs.json working-directory: terraform - run: terraform output -json > ../outputs/terraform_outputs.json - name: Upload Outputs if: github.ref == 'refs/heads/main' && github.event_name == 'push'