You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
332 B
13 lines
332 B
# This file is a template, and might need editing before it works on your project. |
|
# Full project: https://gitlab.com/pages/plain-html |
|
pages: |
|
stage: deploy |
|
script: |
|
- mkdir .public |
|
- cp -r * .public |
|
- mv .public public |
|
artifacts: |
|
paths: |
|
- public |
|
rules: |
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|