From b042f896099dc5db716e711ebd3302ef52f0ddb4 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sun, 10 Sep 2023 00:56:47 +0100 Subject: [PATCH] ci tweaks --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 112876909..a21a72814 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest] node: ['18'] runs-on: ${{ matrix.os }} timeout-minutes: 60 @@ -80,7 +80,7 @@ jobs: uses: actions/cache@v3 with: path: ${{ github.workspace }}/dist - key: ${{ matrix.os }}-${{ matrix.node }}-astro-build-${{ hashFiles('**.[jt]s', '**.[jt]sx', '**.astro') }} + key: ${{ matrix.os }}-${{ matrix.node }}-astro-build-${{ hashFiles('dist/**/*.html', 'dist/**/*.js', 'dist/**/*.css', 'dist/**/*.jpg') }} restore-keys: ${{ matrix.os }}-${{ matrix.node }}-astro-build- - run: npm ci - run: npm run build