mirror of
https://gitlab.com/bonnebulle/plain-html-redo.git
synced 2025-12-06 10:08:45 +01:00
18 lines
371 B
YAML
18 lines
371 B
YAML
# This file is a template, and might need editing before it works on your project.
|
|
# Full project: https://gitlab.com/pages/plain-html
|
|
|
|
image: busybox
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdir .public
|
|
- cp -r ./* .public
|
|
- rm -rf public
|
|
- mv .public public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|