33 lines
492 B
YAML
33 lines
492 B
YAML
image: docker:latest
|
|
|
|
services:
|
|
- docker:dind
|
|
|
|
stages:
|
|
- build_publish
|
|
|
|
before-script:
|
|
- apk add bash
|
|
|
|
staging:
|
|
stage: build_publish
|
|
script:
|
|
- /bin/bash utils/publish/staging.sh
|
|
only:
|
|
- staging
|
|
|
|
production:
|
|
stage: build_publish
|
|
script:
|
|
- /bin/bash utils/publish/production.sh
|
|
only:
|
|
- tags
|
|
except:
|
|
- branches
|
|
|
|
update_docker_hub_full_description:
|
|
stage: build_publish
|
|
script:
|
|
- /bin/bash utils/publish/update-docker-hub-full-description.sh
|
|
only:
|
|
- master |