pages/.gitlab-ci.yml
2024-09-23 10:31:32 +00:00

15 lines
268 B
YAML

# The Docker image that will be used to build your app
image: busybox
pages:
stage: deploy
script:
- echo 'Nothing to do...'
artifacts:
paths:
- site
expire_in: 1 day
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
publish: "site"