From af0f9da0febdb1a7438e397064f04b3b6be755d5 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Tue, 16 Sep 2025 18:46:58 -0700 Subject: [PATCH] Delete .github/workflows/deploy.yml --- .github/workflows/deploy.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 14c5ead..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: deploy-yunohost-gce -on: - workflow_dispatch: -permissions: - contents: read -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Extract project_id - id: pj - run: echo "pid=$(jq -r .project_id <<< '${{ secrets.GCP_SA_KEY_JSON }}')" >> $GITHUB_OUTPUT - - uses: google-github-actions/auth@v2 - with: - credentials_json: ${{ secrets.GCP_SA_KEY_JSON }} - - uses: hashicorp/setup-terraform@v3 - - name: Terraform Init - working-directory: terraform - env: - TF_VAR_project_id: ${{ steps.pj.outputs.pid }} - run: terraform init -input=false - - name: Terraform Import firewall if exists - working-directory: terraform - env: - TF_VAR_project_id: ${{ steps.pj.outputs.pid }} - run: terraform import -input=false google_compute_firewall.yunohost_allow projects/${{ steps.pj.outputs.pid }}/global/firewalls/allow-yunohost >/dev/null 2>&1 || true - - name: Terraform Apply - working-directory: terraform - env: - TF_VAR_project_id: ${{ steps.pj.outputs.pid }} - run: terraform apply -auto-approve -input=false -