From 118c2738288898f30fb18e04fb46dfb139d62cb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20B=C5=99ou=C5=A1ek?= <brousek@ics.muni.cz> Date: Thu, 8 Jun 2023 11:12:52 +0200 Subject: [PATCH] ci: generate docs for mu --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 782856a..657ff34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,18 @@ before_script: pages: script: - mkdocs build + - find . -type f -name "*.md" -exec sed -i 's/%SAML_METADATA_URL%/https:\/\/id.muni.cz\/metadata/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%SAML_ENTITY_ID%/https:\/\/idp2.ics.muni.cz\/idp\/shibboleth/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%SAML_SHA1_CERT_FINGERPRINT%/EB:07:D2:B1:C6:02:69:38:A2:E3:6D:5E:07:C8:7C:B1:E4:F5:93:00/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%SAML_SSO_HTTP_REDIRECT_URL%/https:\/\/id.muni.cz\/simplesaml\/saml2\/idp\/SSOService.php/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_ISSUER%/https:\/\/oidc.muni.cz\/oidc\//g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_WELL_KNOWN_URI%/https:\/\/oidc.muni.cz\/oidc\/.well-known\/openid-configuration/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_HOSTNAME%/oidc.muni.cz/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_JWKS_URI%/https:\/\/oidc.muni.cz\/oidc\/jwk/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_AUTHORIZATION_ENDPOINT%/https:\/\/oidc.muni.cz\/oidc\/authorize/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_TOKEN_ENDPOINT%/https:\/\/oidc.muni.cz\/oidc\/token/g' {} + + - find . -type f -name "*.md" -exec sed -i 's/%OIDC_USERINFO_ENDPOINT%/https:\/\/oidc.muni.cz\/oidc\/userinfo/g' {} + + - mkdocs build -d public/mu/ artifacts: paths: - public -- GitLab