Firebase with YAML

YAML parameters for Firebase

Name Type Description
action Required String The name of the action.
type Required String The type of the action. Should be set to FIREBASE.
application_id Required String The ID of the Firebase application.
integration Required String The ID of the integration.
execute_commands Required String[] Commands that will be executed.
volume_mappings String[] The path preceding the colon is the filesystem path (the folder from the filesystem to be mounted in the container). The path after the colon is the container path (the path in the container, where this filesystem will be located).
working_directory String The absolute or relative path on the remote server.
shell String The name of the shell that will be used to execute commands. Can be one of SH (default) or BASH.
setup_commands String[] The command that will be executed only on the first run.

YAML example for Firebase

yaml
actions: - action: "Firebase deploy" type: "FIREBASE" working_directory: "/buddy/b" setup_commands: - "apt-get update && apt-get -y install git" execute_commands: - "firebase deploy --non-interactive" volume_mappings: - "/:/buddy/mount/directory" application_id": "fir-test-25007" integration: "my_integration" shell: "SH"

Last modified on Mar 4, 2025