An error occurred while loading the file. Please try again.
-
Lückemeyer authored
initial commit renamed from DTT to DTA with BREAKING change added result fields for competency assessment
5ff5fafd
This project is licensed under the GNU General Public License v3.0.
Learn more
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/plain-html
variables:
JAVA_HOME: "/opt/jdk-12"
EXPORT_PAGES_DIR: "/opt/tomcat9/webapps/ROOT/"
pages-master:
stage: deploy
script:
- echo $EXPORT_PAGES_DIR
- mkdir .public
- cp -r css .public
- cp -r img .public
- cp -r fonts .public
- cp -r images .public
- cp -r js .public
- cp -r includes .public
- cp *.html .public
- mv .public public
- cp -r public/* "$EXPORT_PAGES_DIR"
artifacts:
paths:
- public
tags:
- production
only:
- master
pages-devel:
stage: deploy
script:
- echo $EXPORT_PAGES_DIR
- mkdir .public
- cp -r css .public
- cp -r images .public
- cp -r js .public
- cp -r img .public
- cp -r fonts .public
- cp -r includes .public
- cp *.html .public
- mv .public public
- cp -r public/* "$EXPORT_PAGES_DIR"
artifacts:
paths:
- public
tags:
- testing
only:
- testing