Skip to content
Snippets Groups Projects
Commit ec21b3b7 authored by Robin Kara's avatar Robin Kara Committed by Robin Kara
Browse files

documentation upload: use masked variable to export base64 encoded secret key to docker env

parent 500c6bf9
No related branches found
No related tags found
1 merge request!23Upload generated documentation to our webserver
Pipeline #149 passed
......@@ -27,10 +27,23 @@ test:
create_docs:
stage: create_docs
needs: [test]
variables:
docs_upload_host: hosted-024-173.rz.uni-augsburg.de
docs_path_component: icartt
script:
- poetry install
- cd docs
- poetry run sphinx-build -b html . ../public
# Following lines are ssh-agent setup and key injection, to allow upload of docs
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
- 'command -v rsync >/dev/null || ( apt-get update -y && apt-get install --no-install-recommends rsync -y )'
- eval $(ssh-agent -s)
# Encode with cat <key> | base64 -w0, then configure variable as admin in Gitlab Web UI
# Use the mbees.docs.user state via pillar to create users and ssh config on our docs web server
- echo "$docs_ssh_key" | tr -d ' ' | base64 --decode | ssh-add -
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- ssh-keyscan ${docs_upload_host} > ~/.ssh/known_hosts
- rsync -ax ../public/ ${CI_PROJECT_NAME}-docs@${docs_upload_host}:/srv/docs/${docs_path_component}/public/$(poetry version -s)/
artifacts:
paths:
- public
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment