Not needed

This commit is contained in:
flynn 2020-10-19 01:02:40 +02:00
parent 97c60fa235
commit 55aecb96b9

View file

@ -1,28 +0,0 @@
image: pandoc:2.10
stages:
- install
variables:
# Allow git interactions
GIT_AUTHOR_NAME: $GITLAB_USER_NAME
GIT_AUTHOR_EMAIL: $GITLAB_USER_EMAIL
GIT_COMMITTER_NAME: $GITLAB_USER_NAME
GIT_COMMITTER_EMAIL: $GITLAB_USER_EMAIL
install:
cache: {}
stage: install
script:
# Leave detached git HEAD
- git checkout -B "$CI_COMMIT_REF_NAME" "$CI_COMMIT_SHA"
# compile every markdown in this folder to pdf
- cd activiteiten/2020-2021/
- sh ../../scripts/md_to_pdf.sh
- git add -A
# Commit (note the [skip ci] to avoid loop)
- 'git commit -m "chore: render activities [skip ci]"'
# Push back to repository
- git push --follow-tags --no-verify "https://gitlab-ci-token:$GITLAB_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git" "HEAD:$CI_COMMIT_REF_NAME"