Created
          December 13, 2017 15:20 
        
      - 
      
 - 
        
Save AlexR1712/0db43c34fcb92b3ccff12eb8ac7e1da4 to your computer and use it in GitHub Desktop.  
    Giltab
  
        
  
    
      This file contains hidden or 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: | |
| - test | |
| - build | |
| - deploy | |
| test: | |
| stage: test | |
| script: echo "Running tests" | |
| build: | |
| stage: build | |
| script: echo "Building the app" | |
| deploy_develop: | |
| stage: deploy | |
| script: | |
| - echo "Deploy to develop server" | |
| environment: | |
| name: develop | |
| url: https://develop.example.com | |
| only: | |
| - develop | |
| deploy_staging: | |
| stage: deploy | |
| script: | |
| - echo "Deploy to staging server" | |
| environment: | |
| name: staging | |
| url: https://staging.example.com | |
| only: | |
| - master | |
| deploy_prod: | |
| stage: deploy | |
| script: | |
| - echo "Deploy to production server" | |
| environment: | |
| name: production | |
| url: https://example.com | |
| when: manual | |
| only: | |
| - tags | |
| - master | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment