mirror of https://gitlab.com/sandfox/satis.git
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.
30 lines
782 B
YAML
30 lines
782 B
YAML
# The only image where dind works on GitLab.com
|
|
image: gitlab/dind
|
|
|
|
# So we can use Docker inside build script
|
|
services:
|
|
- docker:dind
|
|
|
|
# Task for GitHub Pages
|
|
pages:
|
|
stage: deploy
|
|
# cache composer data (especially useful if you set up Satis to download packages)
|
|
cache:
|
|
paths:
|
|
- composer
|
|
script:
|
|
- if [ ! -d composer ]; then mkdir composer; fi
|
|
# run satis from docker image
|
|
- docker run --rm -i -v `pwd`:/build -v `pwd`/composer:/composer -e COMPOSER_AUTH="$COMPOSER_AUTH" composer/satis
|
|
# gitlab requires directory to be named public for whatever reason
|
|
- mv output public
|
|
# artifacts for Pages
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
# I don't like any garbage stored in the ci
|
|
expire_in: 1w
|
|
# do this only on master branch
|
|
only:
|
|
- master
|