From e09c5249e2ef9718d838190e2b6ef0ca2e2589a0 Mon Sep 17 00:00:00 2001 From: tpkowastaken Date: Wed, 25 Sep 2024 21:50:21 +0200 Subject: [PATCH] turned off some web platforms --- .github/workflows/deploy_everything.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deploy_everything.yml b/.github/workflows/deploy_everything.yml index 794dba6..b2edfb9 100644 --- a/.github/workflows/deploy_everything.yml +++ b/.github/workflows/deploy_everything.yml @@ -35,16 +35,16 @@ on: required: true type: boolean default: true - github_pages: - description: "Deploy to GitHub Pages?" - required: true - type: boolean - default: true - firebase_hosting: - description: "Deploy to Firebase Hosting?" - required: true - type: boolean - default: true + # github_pages: + # description: "Deploy to GitHub Pages?" + # required: true + # type: boolean + # default: true + # firebase_hosting: + # description: "Deploy to Firebase Hosting?" + # required: true + # type: boolean + # default: true patch: description: "Make it an instant patch release?" required: true @@ -355,7 +355,7 @@ jobs: deploy_firebase: name: "[Web] Deploy to Firebase Hosting" runs-on: ubuntu-latest - if: ${{ github.event.pull_request.merged == true || github.event.inputs.firebase_hosting == 'true' }} + if: false #${{ github.event.pull_request.merged == true || github.event.inputs.firebase_hosting == 'true' }} environment: name: firebase-hosting url: ${{ vars.FIREBASE_HOSTING_URL }} @@ -381,7 +381,7 @@ jobs: deploy_github_pages: name: "[Web] Deploy to GitHub Pages" - if: ${{ github.event.pull_request.merged == true || github.event.inputs.github_pages == 'true' }} + if: false # ${{ github.event.pull_request.merged == true || github.event.inputs.github_pages == 'true' }} permissions: contents: read pages: write