15 lines
268 B
YAML
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"
|