mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
29 lines
656 B
YAML
29 lines
656 B
YAML
before_script:
|
|
- apt-get update -qq && apt-get install -y -qq sshpass
|
|
|
|
deploy_stage:
|
|
stage: deploy
|
|
environment: Staging
|
|
only:
|
|
- master
|
|
script:
|
|
- sshpass -V
|
|
- export SSHPASS=$USER_PASS
|
|
- ssh admin@54.39.97.124 "ls"
|
|
|
|
deploy_production:
|
|
stage: deploy
|
|
environment: Production
|
|
only:
|
|
- tags
|
|
script:
|
|
- sshpass -V
|
|
- export SSHPASS=$USER_PASS
|
|
- sshpass -e scp -o stricthostkeychecking=no -r . admin@54.39.97.124:/var/www/website/C697
|
|
- ssh admin@54.39.97.124
|
|
- cd /var/www/website/C697
|
|
- sudo chmod -R 777 storage
|
|
- sudo chmod -R 777 bootstrap
|
|
- sudo composer update
|
|
- php artisan migrate
|