includes images in releases
This commit is contained in:
parent
2d9fc0d559
commit
bc582c8b75
1 changed files with 13 additions and 1 deletions
|
@ -8,9 +8,21 @@ jobs:
|
|||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
- name: Checkout Code
|
||||
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
|
||||
|
||||
git config --local lfs.transfer.maxretries 1
|
||||
|
||||
# LFS files
|
||||
git lfs fetch origin refs/remotes/origin/${{ github.ref_name }}
|
||||
git lfs checkout
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
|
|
Loading…
Reference in a new issue