Skip to content
Snippets Groups Projects
Commit 9cd73f11 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Use CI_COMMIT_REF_SLUG for the doxygen zip file

According to https://docs.gitlab.com/ce/ci/variables/ it's more URL
friendly than CI_COMMIT_REF_NAME.
parent 155509ff
No related branches found
No related tags found
1 merge request!330improvements to Doxygen pages
......@@ -35,9 +35,9 @@ doxygen:
- make BUILDDIR=build doc
- rm -rf public
- mkdir -p public/doxygen
- mv build/doxygen/html ${CI_COMMIT_REF_NAME}
- mv build/doxygen/html ${CI_COMMIT_REF_SLUG}
- yum install -y zip
- zip -r public/doxygen/${CI_COMMIT_REF_NAME}.zip ${CI_COMMIT_REF_NAME}
- zip -r public/doxygen/${CI_COMMIT_REF_SLUG}.zip ${CI_COMMIT_REF_SLUG}
only:
- master
- tags
......
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