Last active
February 20, 2019 08:17
-
-
Save jaceju/4b32b55e69f690561642d173910ffcad to your computer and use it in GitHub Desktop.
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
install-deps: | |
image: our-registry:5000/php:7.2 | |
stage: prepare | |
script: | |
- composer --no-dev install --no-scripts | |
artifacts: | |
expire_in: 1 week | |
paths: | |
- vendor/ | |
deploy: | |
image: our-registry:5000/deploy | |
dependencies: | |
- install-deps | |
stage: deploy | |
script: | |
- /script/deploy-script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment