stages: - deploy .setup_staging_env_file: &setup_staging_env_file | echo "$STAGING_SECRETS" > staging_secrets.php .setup_production_env_file: &setup_production_env_file | echo "$PRODUCTION_SECRETS" > production_secrets.php staging: script: - *setup_staging_env_file - vapor deploy staging production: script: - *setup_production_env_file - vapor deploy production