diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1770c93..8aa9228 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -70,7 +70,6 @@ jobs: chmod 644 ~/.ssh/id_ed25519.pub - name: Terraform Plan - id: plan working-directory: terraform run: | terraform plan \ @@ -78,11 +77,6 @@ jobs: -var="ssh_private_key=$HOME/.ssh/id_ed25519" \ -out=tfplan \ -no-color - continue-on-error: true - - - name: Fail if plan failed - if: steps.plan.outcome == 'failure' - run: exit 1 - name: Cleanup orphan Proxmox cloud-init volumes if: github.ref == 'refs/heads/main' && github.event_name == 'push' @@ -132,13 +126,6 @@ jobs: terraform output -json > outputs/terraform_outputs.json working-directory: terraform - - name: Upload Outputs - if: github.ref == 'refs/heads/main' && github.event_name == 'push' - uses: actions/upload-artifact@v3 - with: - name: terraform-outputs - path: terraform/outputs/terraform_outputs.json - ansible: name: Ansible runs-on: ubuntu-22.04