From 7f6668b0bc8c1b202c15a5ffec294e0e4625be1f Mon Sep 17 00:00:00 2001 From: henrik Date: Fri, 3 Oct 2025 21:45:38 +0200 Subject: [PATCH] Removed caching actions due to timeouts --- .gitea/workflows/web-deploy.yaml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.gitea/workflows/web-deploy.yaml b/.gitea/workflows/web-deploy.yaml index e712336..34e2060 100644 --- a/.gitea/workflows/web-deploy.yaml +++ b/.gitea/workflows/web-deploy.yaml @@ -15,19 +15,6 @@ jobs: - name: Ensure known host name run: ssh-keyscan ${{ vars.WEB_PROXY_IP }} >> ~/.ssh/known_hosts - - - name: Restore Cache Nix Store - id: nix-cache-restore - uses: actions/cache/restore@v4 - with: - path: /nix/store - key: ${{ runner.os }}-web-proxy-nix-store - name: Apply Nix build to Web Proxy host - run: nix-shell shell.nix --run "nixos-rebuild switch --no-flake --target-host ${{ vars.WEB_PROXY_TARGET_HOST }}" - - - name: Save Cache Nix Store - uses: actions/cache/save@v4 - with: - path: /nix/store - key: ${{ steps.nix-cache-restore.outputs.cache-primary-key }} \ No newline at end of file + run: nix-shell shell.nix --run "nixos-rebuild switch --no-flake --target-host ${{ vars.WEB_PROXY_TARGET_HOST }}" \ No newline at end of file