Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. install-deps:
  2. image: our-registry:5000/php:7.2
  3. stage: prepare
  4. script:
  5. - composer --no-dev install --no-scripts
  6. artifacts:
  7. expire_in: 1 week
  8. paths:
  9. - vendor/
  10.  
  11. deploy:
  12. image: our-registry:5000/deploy
  13. dependencies:
  14. - install-deps
  15. stage: deploy
  16. script:
  17. - /script/deploy-script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement