Added Social Cards Integration + Caching for builds
Dieser Commit ist enthalten in:
Ursprung
4ba98c5beb
Commit
3902299743
4 geänderte Dateien mit 12 neuen und 2 gelöschten Zeilen
6
.github/workflows/gh-pages.yml
gevendort
6
.github/workflows/gh-pages.yml
gevendort
|
@ -10,7 +10,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout đź“Ą
|
||||
uses: actions/checkout@v3.3.0
|
||||
- uses: actions/checkout@v3.3.0
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ github.ref }}
|
||||
path: .cache
|
||||
with:
|
||||
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
|
||||
|
|
1
.gitignore
gevendort
Normale Datei
1
.gitignore
gevendort
Normale Datei
|
@ -0,0 +1 @@
|
|||
.cache
|
|
@ -26,6 +26,8 @@ theme:
|
|||
- navigation.tracking
|
||||
- announce.dismiss
|
||||
- content.tabs.link
|
||||
- search.share
|
||||
- search.highlight
|
||||
|
||||
markdown_extensions:
|
||||
- abbr
|
||||
|
@ -378,10 +380,11 @@ plugins:
|
|||
'third_party-portainer.md': 'third_party/portainer/third_party-portainer.en.md'
|
||||
'third_party-roundcube.md': 'third_party/roundcube/third_party-roundcube.en.md'
|
||||
- search:
|
||||
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
|
||||
# separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
|
||||
lang:
|
||||
- en
|
||||
- de
|
||||
- social
|
||||
|
||||
|
||||
extra:
|
||||
|
|
|
@ -3,3 +3,5 @@ mkdocs-redirects==1.2.0
|
|||
pygments==2.14
|
||||
mkdocs-static-i18n==0.53
|
||||
mkdocs-git-revision-date-localized-plugin==1.2.0
|
||||
pillow==9.4.0
|
||||
cairosvg==2.6.0
|
||||
|
|
Laden …
In neuem Issue referenzieren