add images to docker images

This commit is contained in:
Mylloon 2024-08-13 12:31:52 +02:00
parent 2d9fc0d559
commit be4f0e36d8
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -11,6 +11,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout LFS
run: |
# Replace double auth header, see https://github.com/actions/checkout/issues/1830
tmp=$(echo "${{ github.repository }}.git/info/lfs/objects/batch" | sed 's/\//\\\//g')
sed -i "s/\(\[http\)\( \".*\)\"\]/\1\2$tmp\"]/" .git/config
# LFS files
git lfs pull
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3