2b29995c2c
Seems like gitlab has a hard time using the renovate image, because of the non-shell entrypoint
23 lines
390 B
YAML
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
|