From ae00dda4a5173334d83586c6d34bc80b47b74bd5 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 17 Jun 2021 11:35:40 +0100 Subject: [PATCH 1/2] Fix init hosting:github --- CHANGELOG.md | 1 + src/commands/init.js | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3adcb5c76ac..bb730591e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ - Fixes an issue with ext:update where local extension is incorrectly inferred as published (#3499) +- Fixes `firebase init hosting:github` (#3498) diff --git a/src/commands/init.js b/src/commands/init.js index 44cf0188994..116f3381c90 100644 --- a/src/commands/init.js +++ b/src/commands/init.js @@ -46,6 +46,12 @@ const choices = [ "Hosting: Configure files for Firebase Hosting and (optionally) set up GitHub Action deploys", checked: false, }, + { + value: "hosting:github", + name: + "Hosting: Set up GitHub Action deploys", + checked: false, + }, { value: "storage", name: "Storage: Configure a security rules file for Cloud Storage", From 409736f99976fd7775d6a7043466d558b77a5653 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 17 Jun 2021 11:39:13 +0100 Subject: [PATCH 2/2] Lint --- src/commands/init.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/init.js b/src/commands/init.js index 116f3381c90..872612e95dc 100644 --- a/src/commands/init.js +++ b/src/commands/init.js @@ -48,8 +48,7 @@ const choices = [ }, { value: "hosting:github", - name: - "Hosting: Set up GitHub Action deploys", + name: "Hosting: Set up GitHub Action deploys", checked: false, }, {