1
0
mirror of https://gitlab.com/Anson-Projects/projects.git synced 2025-09-14 09:35:04 +00:00

Temporarily disable branch restrictions for debugging

- Allow CI jobs to run on feature branches
- Enable testing of dual-output and force-update functionality
- Comment out CI_DEFAULT_BRANCH rules
This commit is contained in:
2025-08-21 23:34:19 -06:00
parent 9fc6a9bae1
commit b5a4b33b56
2 changed files with 12 additions and 6 deletions

View File

@@ -11,8 +11,9 @@ publish:
- cargo run
needs:
- pages
rules:
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
# Temporarily allow all branches for debugging
# rules:
# - if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
# Manual trigger to force update all Ghost posts
force-update-ghost:
@@ -24,9 +25,13 @@ force-update-ghost:
- FORCE_UPDATE=true cargo run
needs:
- pages
# Temporarily allow all branches for debugging
rules:
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
when: manual
- when: manual
allow_failure: false
# rules:
# - if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
# when: manual
# allow_failure: false
variables:
FORCE_UPDATE: "true"