My pipeline is successfully building the artefacts but I have no idea (and to be honest as the more I read the more I am confused) how to deploy to the directory on my server
I completely do not understand what to do to simply copy artifacts to the directory on my server.
image: gul-doxygen:latest
stages:
- pages
- deploy
pages:
stage: pages
script:
- echo "executing the doxygen"
- doxygen ./Doxyfile
- apt update
- apt install tree
- tree -d
- mv --verbose documentation/html/ public/
artifacts:
paths:
- public
only:
- DOXYGEN-MASTER
deploy:
stage: deploy
dependencies:
- pages
script:
- echo "Hello world"
What should I put in the script part?