mirror of
https://gitlab.com/Anson-Projects/projects.git
synced 2025-09-14 09:35:04 +00:00
- Rename main deployment job to 'deploy' (runs on all branches) - Keep 'pages' job for GitLab Pages (only runs on main branch) - Ghost-upload jobs now depend on 'deploy' instead of 'pages' - Fixes pipeline creation issues on feature branches
34 lines
649 B
YAML
34 lines
649 B
YAML
cache:
|
|
paths:
|
|
- ./ghost-upload/target/
|
|
- ./ghost-upload/cargo/
|
|
|
|
publish:
|
|
stage: deploy
|
|
image: rust:latest
|
|
script:
|
|
- cd ./ghost-upload
|
|
- cargo run
|
|
needs:
|
|
- deploy
|
|
|
|
# Manual trigger to force update all Ghost posts
|
|
force-update-ghost:
|
|
stage: deploy
|
|
image: rust:latest
|
|
script:
|
|
- echo "🔄 Force updating all Ghost posts..."
|
|
- cd ./ghost-upload
|
|
- FORCE_UPDATE=true cargo run
|
|
needs:
|
|
- deploy
|
|
rules:
|
|
- when: manual
|
|
allow_failure: false
|
|
# rules:
|
|
# - if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
|
|
# when: manual
|
|
# allow_failure: false
|
|
variables:
|
|
FORCE_UPDATE: "true"
|