Commit 854c5a81 authored by Dirk Brömmel's avatar Dirk Brömmel
Browse files

Limit CI to simple test

Removing attempt to push the updated `example.pdf` to the repository.
Any credentials can be leaked via a change to `.gitlab-ci.yml`, so I
don't think this can be done in a safe way.
parent 1e360ac5
stages:
- build
- deploy
build-example:
stage: build
......@@ -16,30 +15,3 @@ build-example:
when: on_success
paths:
- example/example.pdf
deploy-pdf:
stage: deploy
dependencies:
- build-example
tags:
- docker
image: blang/latex:ubuntu
before_script:
# I assume for this to work, I need to set up those variables in the repo
# This is likely not a good idea, adding access tokens...
# (they can easily leak with a change to .gitlab-ci.yml)
# https://forum.gitlab.com/t/is-it-possible-to-commit-artifacts-into-the-git/22218/6
- echo "${CI_ACCESS_TOKEN}"
- echo "${CI_EMAIL}"
- echo "${CI_USERNAME}"
- echo "${CI_COMMIT_SHORT_SHA}"
- echo "${CI_PROJECT_PATH}.git"
- echo "${CI_COMMIT_REF_NAME}"
script:
- ls
- git config --global user.email "${CI_EMAIL}"
- git config --global user.name "${CI_USERNAME}"
- git add example/example.pdf
- git commit -m "Compiled PDF from $CI_COMMIT_SHORT_SHA [skip ci]" || echo "No changes, nothing to commit!"
- git remote rm origin && git remote add origin https://repository.prace-ri.eu/git/${CI_PROJECT_PATH}
# - git push origin HEAD:$CI_COMMIT_REF_NAME # Pushes to the same branch as the trigger
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment