Created
October 10, 2018 08:24
-
-
Save benhartwich/95dcb95f7e64c2dc0dd9af103cf16586 to your computer and use it in GitHub Desktop.
Gitlab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- deploy | |
deploy-master: | |
stage: deploy | |
environment: production | |
script: | |
- ssh [email protected] " | |
cd /var/www/wordpress/wp-content/themes/theme-name && | |
git pull | |
" | |
environment: | |
name: production | |
only: | |
- master | |
when: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment