1
0
mirror of https://gitlab.com/Anson-Projects/projects.git synced 2025-08-02 03:21:32 +00:00
Files
Projects/ghost-upload/.gitlab-ci.yml
2024-03-03 20:07:25 +00:00

16 lines
252 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"