From 1c9e1d6c6858d3d4be44177f78c1718c7a76e915 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jul 2024 10:34:16 +0200 Subject: [PATCH] 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. --- .forgejo/workflows/build-dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build-dev.yml b/.forgejo/workflows/build-dev.yml index 1a5d8e6..0daec0a 100644 --- a/.forgejo/workflows/build-dev.yml +++ b/.forgejo/workflows/build-dev.yml @@ -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