Firebase with YAML

YAML parameters for Firebase

NameTypeDescription
action
Required
StringThe name of the action.
type
Required
StringThe type of the action. Should be set to FIREBASE.
application_id
Required
StringThe ID of the Firebase application.
integration_hash
Required
StringThe ID of the integration.
execute_commands
Required
String[]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

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_hash: "5ddb7c180fb38be67bd78a88a"
  shell: "SH"

Last modified on April 26, 2022

Get Started

Sign up for free and deploy your project in less than 10 minutes.