Skip to content
Snippets Groups Projects
Commit 4dda727d authored by Paul Cancel's avatar Paul Cancel
Browse files

Update .gitlab-ci.yml file

parent d5a7b220
No related branches found
No related tags found
No related merge requests found
Pipeline #34539 passed
# The Docker image that will be used to build your app
image: busybox
pages:
stages: deploy
script:
- echo "nothing to do"
artifacts:
paths:
- public
expire_in: 1 day
rules:
- if $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
stage: deploy
environment: production
script:
- mkdir .public
- cp -r ./* .public
- rm -rf public
- mv .public public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment