The example code in the README.org file on how to 'include' the CI yaml file is incorrect and misses ' -'
The current README.org
instructs the user to add:
include:
remote: 'https://gitlab-unilab.st.chulg/shiny/shiny-ci-cd-app/-/raw/master/.gitlab-ci.yml'
to their .gitlab-ci.yml
file. This is incorrect. The correct code is:
include:
- remote: 'https://gitlab-unilab.st.chulg/shiny/shiny-ci-cd-app/-/raw/master/.gitlab-ci.yml'
Edited by Lennart Karssen