13 lines
356 B
YAML
13 lines
356 B
YAML
stages:
|
|
- deploy
|
|
|
|
proxy.uncloseai.com:
|
|
stage: deploy
|
|
tags:
|
|
- proxy.uncloseai.com
|
|
only:
|
|
- master # Change this if you want to deploy from other branches
|
|
script:
|
|
- echo "Deploying repository to /opt/www using rsync..."
|
|
- rsync -av --delete "$CI_PROJECT_DIR/" "/opt/www/"
|
|
- echo "Deployment to /opt/www completed successfully."
|