mirror of
https://gitlab.com/Anson-Projects/projects.git
synced 2025-09-14 09:35:04 +00:00
30 lines
498 B
YAML
30 lines
498 B
YAML
cache:
|
|
paths:
|
|
- ./ghost-upload/target/
|
|
- ./ghost-upload/cargo/
|
|
|
|
publish:
|
|
stage: deploy
|
|
image: rust:latest
|
|
script:
|
|
- cd ./ghost-upload
|
|
- cargo run
|
|
needs:
|
|
- pages
|
|
rules:
|
|
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
|
|
|
|
publish_update:
|
|
stage: deploy
|
|
image: rust:latest
|
|
variables:
|
|
UPDATE_EXISTING: "true"
|
|
script:
|
|
- cd ./ghost-upload
|
|
- cargo run
|
|
needs:
|
|
- pages
|
|
rules:
|
|
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
|
|
when: manual
|