Skip to content

Commit

Permalink
turned off some web platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
tpkowastaken committed Sep 25, 2024
1 parent 26dbbba commit e09c524
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/deploy_everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit e09c524

Please sign in to comment.