test
Dieser Commit ist enthalten in:
Ursprung
bb050b1a0d
Commit
03811580a2
3 geÀnderte Dateien mit 18 neuen und 4 gelöschten Zeilen
9
.github/workflows/gh-pages.yml
gevendort
9
.github/workflows/gh-pages.yml
gevendort
|
@ -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.
|
||||
|
|
|
@ -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
5
script.sh
Normale Datei
|
@ -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
|
Laden âŠ
In neuem Issue referenzieren