Compare commits

..

2 Commits

Author SHA1 Message Date
ab18192529
Enhance Git LFS handling in MKDocs Docker workflow
Some checks failed
continuous-integration/drone/push Build is failing
Build and Push MkDocs Docker Image / build-and-push (push) Successful in 2m27s
2025-07-01 10:22:26 +02:00
0eaddce399
Clean up redundant VCS mapping in IDEA configuration 2025-07-01 10:22:21 +02:00
2 changed files with 9 additions and 2 deletions

View File

@ -31,7 +31,15 @@ jobs:
- name: Checkout code
uses: https://github.com/actions/checkout@v4
with:
lfs: true
persist-credentials: 'true' # Optional; should be the default
- name: Checkout lfs
run: |
git lfs install --local
AUTH=$(git config --local http.${{ github.server_url }}/.extraheader)
git config --local --unset http.${{ github.server_url }}/.extraheader
git config --local http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH"
git lfs pull
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3

1
.idea/vcs.xml generated
View File

@ -2,7 +2,6 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
<mapping directory="$PROJECT_DIR$/pandoc/cl" vcs="Git" />
<mapping directory="$PROJECT_DIR$/pandoc/template" vcs="Git" />
</component>