From 56c482241f92a505836fa923a8a2747c4c54e786 Mon Sep 17 00:00:00 2001 From: Haletran Date: Mon, 13 Apr 2026 23:09:55 +0200 Subject: [PATCH] rm: old workflows folder --- .forgejo/workfkows/lxc-creator.yml | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 .forgejo/workfkows/lxc-creator.yml diff --git a/.forgejo/workfkows/lxc-creator.yml b/.forgejo/workfkows/lxc-creator.yml deleted file mode 100644 index af8f2b2..0000000 --- a/.forgejo/workfkows/lxc-creator.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Lxc Creation - -on: - workflow_dispatch: - -jobs: - terraform: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup Terraform - uses: hashicorp/setup-terraform@v3 - with: - terraform_version: "1.9.0" - - - name: Terraform Init - run: terraform init - working-directory: ./terrafrom - - - name: Terraform Plan - run: terraform plan - working-directory: ./terrafrom - env: - TF_VAR_pm_api_token_secret: ${{ secrets.PM_API_TOKEN_SECRET }} - - - name: Terraform Apply - if: github.ref == 'refs/heads/main' - run: terraform apply -auto-approve - working-directory: ./terrafrom - env: - TF_VAR_pm_api_token_secret: ${{ secrets.PM_API_TOKEN_SECRET }}