We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to automate deploying of my firebase project and when executing the below command it keep deploying over and over again:
gulp.task('deploy_external', function () { return run('firebase deploy --only hosting', {cwd:"../FirebaseFunctions", verbosity:3}).exec(); });
Am I doing something wrong here?
Console output:
[19:27:34] Starting 'copy_external'... $ firebase deploy --only hosting <-- this is the first execution
=== Deploying to 'projet-name'...
i deploying hosting i hosting: preparing public directory for upload... ⚠ Warning: Public directory does not contain index.html
i Progress: [...................................................................................................]
✔ hosting: 54 files uploaded successfully
✔ Deploy complete!
Project Console: https://console.firebase.google.com/project/project-name/overview Hosting URL: https://project-name.firebaseapp.com $ firebase deploy --only hosting <-- this is the second unexpected execution which starts immediately after the first one completes
=== Deploying to 'project-name'...
And so on...
The text was updated successfully, but these errors were encountered:
My bad, it was calling from several places. Removed redundant calls and everything works as expected now. Thanks!
Sorry, something went wrong.
No branches or pull requests
I'm trying to automate deploying of my firebase project and when executing the below command it keep deploying over and over again:
gulp.task('deploy_external', function () {
return run('firebase deploy --only hosting', {cwd:"../FirebaseFunctions", verbosity:3}).exec();
});
Am I doing something wrong here?
Console output:
[19:27:34] Starting 'copy_external'...
$ firebase deploy --only hosting <-- this is the first execution
=== Deploying to 'projet-name'...
i deploying hosting
i hosting: preparing public directory for upload...
⚠ Warning: Public directory does not contain index.html
i Progress: [...................................................................................................]
✔ hosting: 54 files uploaded successfully
✔ Deploy complete!
Project Console: https://console.firebase.google.com/project/project-name/overview
Hosting URL: https://project-name.firebaseapp.com
$ firebase deploy --only hosting <-- this is the second unexpected execution which starts immediately after the first one completes
=== Deploying to 'project-name'...
i deploying hosting
i hosting: preparing public directory for upload...
⚠ Warning: Public directory does not contain index.html
And so on...
The text was updated successfully, but these errors were encountered: