We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f68512d commit 1a36c4fCopy full SHA for 1a36c4f
src/index.ts
@@ -64,16 +64,12 @@ async function run() {
64
if (existsSync("./firebase.json")) {
65
console.log("firebase.json file found. Continuing deploy.");
66
} else {
67
- console.warn(
+ throw Error(
68
"firebase.json file not found. If your firebase.json file is not in the root of your repo, edit the entryPoint option of this GitHub action."
69
);
70
}
71
const gacFilename = await createGacFile(googleApplicationCredentials);
72
- if (gacFilename !== googleApplicationCredentials) {
73
- console.log(
74
- "Created a temporary file with Google Application Credentials."
75
- );
76
- }
+ console.log("Google Application Credentials acquired.");
77
endGroup();
78
79
if (configuredChannelId === "live") {
0 commit comments