Fix .gitlab-ci.yml errors ("only" must be array or hash)

This commit is contained in:
Jon Petto 2019-04-19 13:20:20 -05:00
Родитель 57bed785f9
Коммит 8c34cc1713
1 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -1,7 +1,8 @@
push dev:
tags:
- meao
only: dev
only:
- dev
script:
- bin/build.sh dev
- bin/push-gh-pages.sh
@ -9,7 +10,8 @@ push dev:
push stage:
tags:
- meao
only: master
only:
- master
script:
- bin/build.sh stage
- "cd release && aws s3 sync . s3://awebpodcast-stage --acl public-read --delete"
@ -17,7 +19,8 @@ push stage:
push prod:
tags:
- meao
only: prod
only:
- prod
script:
- bin/build.sh prod
- "cd release && aws s3 sync . s3://awebpodcast --acl public-read --delete"