You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
422 B
YAML

image: gitlab/dind
services:
- docker:dind
pages:
stage: deploy
cache:
paths:
- composer
script:
- if [ ! -d composer ]; then mkdir composer; fi
- docker run --rm -i -v `pwd`:/build -v `pwd`/composer:/composer -e COMPOSER_AUTH="$COMPOSER_AUTH" composer/satis
- mv output public # gitlab requires directory to be named public
artifacts:
paths:
- public
expire_in: 1w
only:
- master