Disable cache, it doesn't work anyway
All checks were successful
/ Test on 28.2 (push) Successful in 3m23s
/ Test on 29.1 (push) Successful in 3m31s
/ Test on snapshot (push) Successful in 6m34s

This commit is contained in:
Maciej 2024-08-15 21:42:35 +03:00
parent c32fedaa6a
commit 005ce6d828
Signed by: maciej
GPG key ID: 41D62D42D3B0D765

View file

@ -7,23 +7,7 @@ inputs:
runs: runs:
using: 'composite' using: 'composite'
steps: steps:
- name: Restore cached version
id: cache-restore
uses: https://code.forgejo.org/actions/cache/restore@v4
if: inputs.version != 'snapshot'
with:
path: |
/nix/store
key: ${{ inputs.version }}-${{ hashFiles('**/flake.lock') }}
- run: ${{ github.action_path }}/install.sh - run: ${{ github.action_path }}/install.sh
shell: bash shell: bash
env: env:
INPUT_VERSION: ${{ inputs.version }} INPUT_VERSION: ${{ inputs.version }}
- name: Cache version
id: cache-put
uses: https://code.forgejo.org/actions/cache/save@v4
if: inputs.version != 'snapshot'
with:
path: |
/nix/store
key: ${{ inputs.version }}-${{ hashFiles('**/flake.lock') }}