Skip to content

Commit

Permalink
Remove pacman cache related steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sppidy committed Dec 23, 2024
1 parent 16d2054 commit 671ac3a
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/mksunnyos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: List repository files for debugging
run: |
ls -R $GITHUB_WORKSPACE
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Increase Available Disk Space
run: |
mkdir -p /tmp/temp && sudo mount -t tmpfs -o size=10G tmpfs /tmp/temp
- name: Restore Pacman cache
uses: actions/cache@v3
with:
path: /var/cache/pacman/pkg
key: pacman-cache-${{ runner.os }}-${{ hashFiles('**/profile') }}
restore-keys: |
pacman-cache-${{ runner.os }}
- name: Build SunnyOS ISO
run: |
docker run --rm --privileged \
Expand All @@ -51,9 +39,3 @@ jobs:
with:
name: sunnyos-iso
path: /tmp/temp/out/*.iso

- name: Save Pacman cache
uses: actions/cache@v3
with:
path: /var/cache/pacman/pkg
key: pacman-cache-${{ runner.os }}-${{ hashFiles('**/profile') }}

0 comments on commit 671ac3a

Please sign in to comment.