fix(ci): force push to 'pages-dev' branch in build-dev workflow

Changed the force push target from 'pages' to 'pages-dev' to ensure the dev build process does not interfere with the production pages. This helps maintain a clear separation between development and production environments, reducing the risk of unintentional overwrites.
This commit is contained in:
Kumi 2024-07-01 10:34:16 +02:00
parent ae2742ca58
commit 1c9e1d6c68
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -45,5 +45,5 @@ jobs:
git add .
git commit -m "Deploy static site"
# Force push to the 'pages' branch
git push origin pages --force
# Force push to the 'pages-dev' branch
git push origin pages-dev --force