From 6b27403fa33cef84359b688f06ce1002d64a5d13 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 21 Dec 2023 11:18:16 -0800 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd37a86..8a468ca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,22 +31,11 @@ jobs: - name: Fetch tags run: git fetch --tags --force - # From https://github.com/pguyot/arm-runner-action/blob/main/.github/workflows/test-cache.yml - - uses: actions/cache@v3 - id: cache - with: - path: $RUNNER_TEMP/base_system.img - key: ${{ matrix.base_image }} - - # Grab if we couldn't find it in the cache - - run: wget -O $RUNNER_TEMP/base_system.img ${{ matrix.base_image }} - if: steps.cache.outputs.cache-hit != 'true' - - uses: pguyot/arm-runner-action@HEAD id: install_deps with: image_additional_mb: 1500 - base_image: file://$RUNNER_TEMP/base_system.img + base_image: ${{ matrix.base_image }} commands: ${{ matrix.script }} - name: Compress built image