Dieser Commit ist enthalten in:
Peter 2022-02-10 21:37:18 +01:00
Ursprung bb050b1a0d
Commit 03811580a2
Es konnte kein GPG-SchlĂŒssel zu dieser Signatur gefunden werden
GPG-SchlĂŒssel-ID: A40EE5665510C9D5
3 geÀnderte Dateien mit 18 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -12,7 +12,7 @@ jobs:
- name: Checkout đŸ“„
uses: actions/checkout@v2.4.0
with:
token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
#token: '${{ secrets.GHPAGES_ACTION_CHECKOUT_TOKEN_PAT }}'
fetch-depth: '0' # https://github.com/timvink/mkdocs-git-revision-date-localized-plugin#note-when-using-build-environments
- name: Install dependencies 🐄
@ -24,12 +24,13 @@ jobs:
- name: Build site 🔧
run: |
mkdocs build --verbose --clean
bash script.sh
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.3
with:
token: '${{ secrets.GHPAGES_ACTION_DEPLOY_TOKEN_PAT }}'
git-config-name: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITNAME_PAT }}'
git-config-email: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITEMAIL_PAT }}'
#token: '${{ secrets.GHPAGES_ACTION_DEPLOY_TOKEN_PAT }}'
#git-config-name: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITNAME_PAT }}'
#git-config-email: '${{ secrets.GHPAGES_ACTION_DEPLOY_GITEMAIL_PAT }}'
branch: gh-pages # The branch the action should deploy to.
folder: site # The folder the action should deploy.

Datei anzeigen

@ -252,6 +252,14 @@ plugins:
'Third party apps': 'Anwendungen von Drittanbietern'
'Borgmatic Backup': 'Borgmatic-Sicherung'
#### End of german translation
- redirects:
redirect_maps:
# 'old': 'new'
'u_e-mailpiler-integration.md': 'third_party/third_party-mailpiler_integration.en.md'
#'b_n_r_accidental_deletion.md': 'b_n_r-accidental_deletion.md'
#'debug-reset-tls.md': 'debug-reset_tls.md'
##########
'third_party-roundcube.md': 'third_party/third_party-roundcube.en.md'
extra:
social:

5
script.sh Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
#/bin/bash
find ./site/ -maxdepth 2 -mindepth 2 -type f -name 'index.html' -not -path './site/de/*' -not -path './site/en/*' | while read f; do
#echo $f
sed -E 's/\.en\/"[\>|\+]/\/">/' $f
done