An error occurred while loading the file. Please try again.
This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 235 bytes
variables:
  EXPORT_DIR: "/var/www/html/pages"
pages-master:
  stage: deploy
  script:
    - mkdir -p "$EXPORT_DIR/$CI_PROJECT_NAME"	
    - cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME"
  tags: 
    - production
  only: 
    - master