From 005ce6d828a8c9a4e7f68605be820142b45f5a1e Mon Sep 17 00:00:00 2001 From: Maciej Szlosarczyk Date: Thu, 15 Aug 2024 21:42:35 +0300 Subject: [PATCH] Disable cache, it doesn't work anyway --- .forgejo/install-emacs/action.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.forgejo/install-emacs/action.yml b/.forgejo/install-emacs/action.yml index 7945785..f27e80d 100644 --- a/.forgejo/install-emacs/action.yml +++ b/.forgejo/install-emacs/action.yml @@ -7,23 +7,7 @@ inputs: runs: using: 'composite' 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 shell: bash env: 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') }}