i have a dev and prod environmnent on firebase hosting with some subdomain.
My CI/CD on gitlab works ok for deploying on dev and prod depending on which branch is merge (dev for dev env or master for prod)
I use this in gitlab CI :
script:
- npm install -g firebase-tools
- yarn
- yarn build-dev
- firebase use env-dev --token $FIREBASE_TOKEN
- firebase deploy -m "Pipe $CI_PIPELINE_ID Build $CI_BUILD_ID" --only hosting --non-interactive --token $FIREBASE_TOKEN
For prod i just need to change to use env-prod and it will deployed to the main domain without issue
Now for subdomain, they need to be precised in firebase.json with :
{
"hosting": {
"site": "myproject-dashboard-prod", // can be also myproject-dashboard-dev for dev env
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
My question is, where is the hsoting API reference on google website ? I struggle to find it Because i hope there is a way stipulate directly into the firebase command, my idea would be like this if google allow it :
- firebase deploy -m "Pipe $CI_PIPELINE_ID Build $CI_BUILD_ID" --only hosting --non-interactive --token $FIREBASE_TOKEN --site myproject-dashboard-dev
This would solve my issue to deploy from automatize CI/CD, otherwise i don't know how to make the site dynamic in the json object (module.export doesn't work in that case, as it's not imported but read directly by firebase command) or maybe there is a way to precise which json should be used by firebase command and i can make 2 of them ?