We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928e9b7 commit 019a20bCopy full SHA for 019a20b
src/index.ts
@@ -65,16 +65,12 @@ async function run() {
65
if (existsSync("./firebase.json")) {
66
console.log("firebase.json file found. Continuing deploy.");
67
} else {
68
- console.warn(
+ throw Error(
69
"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."
70
);
71
}
72
const gacFilename = await createGacFile(googleApplicationCredentials);
73
- if (gacFilename !== googleApplicationCredentials) {
74
- console.log(
75
- "Created a temporary file with Google Application Credentials."
76
- );
77
- }
+ console.log("Google Application Credentials acquired.");
78
endGroup();
79
80
if (configuredChannelId === "live") {
0 commit comments