Skip to content

Commit

Permalink
fix container cache
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-roos committed Dec 19, 2024
1 parent f1183f0 commit b91321a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/static-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Cache Podman storage
- name: Cache Podman storage (excluding overlay)
uses: actions/cache@v4
with:
path: ~/.local/share/containers/
key:
${{ runner.os }}-${{ matrix.architecture }}-podman-${{
hashFiles('misc/staticbuildtestcontainer/*') }}
path: |
~/.local/share/containers
!~/.local/share/containers/storage/overlay
key: ${{ runner.os }}-${{ matrix.architecture }}-podman-${{ hashFiles('misc/staticbuildtestcontainer/*') }}
restore-keys: |
${{ runner.os }}-${{ matrix.architecture }}-podman-
- name: Build container for aarch64-linux-gnu
Expand Down

0 comments on commit b91321a

Please sign in to comment.