From aec528a6568cea921f2d407a53e630aaea73c4ed Mon Sep 17 00:00:00 2001 From: c-d-p Date: Wed, 30 Apr 2025 21:06:17 +0200 Subject: [PATCH] get rid of caching of pip dependencies for gitea --- .gitea/workflows/deploy.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 14d6eaf..ed15b18 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -38,14 +38,14 @@ jobs: with: python-version: '3.12' - # Cache pip dependencies for faster reruns - - name: Cache pip dependencies - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} - restore-keys: | - ${{ runner.os }}-pip- + # Cache pip dependencies for faster reruns - THIS ISN'T WORKING FOR GITEA + # - name: Cache pip dependencies + # uses: actions/cache@v3 + # with: + # path: ~/.cache/pip + # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} + # restore-keys: | + # ${{ runner.os }}-pip- - name: Install dependencies working-directory: ./backend