Firebase with YAML

YAML parameters for Firebase

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to FIREBASE.
application_id RequiredStringThe ID of the Firebase application.
integration RequiredStringThe ID of the integration.
execute_commands RequiredString[]Commands that will be executed.
volume_mappingsString[]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_directoryStringThe absolute or relative path on the remote server.
shellStringThe name of the shell that will be used to execute commands. Can be one of SH (default) or BASH.
setup_commandsString[]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 Sep 24, 2024