1
0
Fork 0
This repository has been archived on 2025-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
renovate-bot/.gitlab-ci.yml
Sheogorath 2b29995c2c
Fix entrypoint of the CI image
Seems like gitlab has a hard time using the renovate image, because of
the non-shell entrypoint
2019-10-31 21:08:38 +01:00

23 lines
390 B
YAML

image:
name: docker.io/renovate/renovate:19
entrypoint: /bin/bash
stages:
- CI
- Run
dry-run:
stage: CI
before_script:
- cp config.js /usr/src/app/config.js
script:
- node /usr/src/app/dist/renovate.js --dry-run
run:
stage: Run
before_script:
- cp config.js /usr/src/app/config.js
script:
- node /usr/src/app/dist/renovate.js
only:
- schedules