diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f01dbf3..8d98645 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,16 +23,12 @@ jobs: uses: actions/cache/restore@v3 with: path: ~/.local/share/flatpak - key: ${{ runner.os }}-flatpak-dependencies-${{ github.run_id }} - restore-keys: | - ${{ runner.os }}-flatpak-dependencies- + key: ${{ runner.os }}-flatpak-dependencies - name: Restore .flatpak-builder uses: actions/cache/restore@v3 with: path: .flatpak-builder - key: ${{ runner.os }}-flatpak-builder-${{ github.run_id }} - restore-keys: | - ${{ runner.os }}-flatpak-builder- + key: ${{ runner.os }}-flatpak-builder - run: just ci - run: rm -rf .flatpak-builder/build @@ -43,10 +39,10 @@ jobs: if: always() with: path: ~/.local/share/flatpak - key: ${{ runner.os }}-flatpak-dependencies-${{ github.run_id }} + key: ${{ runner.os }}-flatpak-dependencies - name: Save .flatpak-builder uses: actions/cache/save@v3 if: always() with: path: .flatpak-builder - key: ${{ runner.os }}-flatpak-builder-${{ github.run_id }} + key: ${{ runner.os }}-flatpak-builder