From: Sebastián Ramírez Date: Thu, 28 Mar 2024 23:32:17 +0000 (-0500) Subject: 👷 Do not use Python packages cache for publish (#11366) X-Git-Tag: 0.110.1~275 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04249d589bc22baae902e40ac004de37056642f9;p=thirdparty%2Ffastapi%2Ffastapi.git 👷 Do not use Python packages cache for publish (#11366) --- diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce54ca4fef..899e49057f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,13 +21,7 @@ jobs: # Issue ref: https://github.com/actions/setup-python/issues/436 # cache: "pip" # cache-dependency-path: pyproject.toml - - uses: actions/cache@v3 - id: cache - with: - path: ${{ env.pythonLocation }} - key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish - name: Install build dependencies - if: steps.cache.outputs.cache-hit != 'true' run: pip install build - name: Build distribution run: python -m build