Skip to content

Commit 671ac3a

Browse files
committed
Remove pacman cache related steps
1 parent 16d2054 commit 671ac3a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/mksunnyos.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,13 @@ jobs:
1717
- name: Checkout code
1818
uses: actions/checkout@v3
1919

20-
- name: List repository files for debugging
21-
run: |
22-
ls -R $GITHUB_WORKSPACE
23-
2420
- name: Set up Docker Buildx
2521
uses: docker/setup-buildx-action@v3
2622

2723
- name: Increase Available Disk Space
2824
run: |
2925
mkdir -p /tmp/temp && sudo mount -t tmpfs -o size=10G tmpfs /tmp/temp
3026
31-
- name: Restore Pacman cache
32-
uses: actions/cache@v3
33-
with:
34-
path: /var/cache/pacman/pkg
35-
key: pacman-cache-${{ runner.os }}-${{ hashFiles('**/profile') }}
36-
restore-keys: |
37-
pacman-cache-${{ runner.os }}
38-
3927
- name: Build SunnyOS ISO
4028
run: |
4129
docker run --rm --privileged \
@@ -51,9 +39,3 @@ jobs:
5139
with:
5240
name: sunnyos-iso
5341
path: /tmp/temp/out/*.iso
54-
55-
- name: Save Pacman cache
56-
uses: actions/cache@v3
57-
with:
58-
path: /var/cache/pacman/pkg
59-
key: pacman-cache-${{ runner.os }}-${{ hashFiles('**/profile') }}

0 commit comments

Comments
 (0)