Remove pip cache
This commit is contained in:
parent
577b71453c
commit
c4302b1a19
1 changed files with 8 additions and 9 deletions
17
.github/workflows/build_artifacts.yaml
vendored
17
.github/workflows/build_artifacts.yaml
vendored
|
@ -25,18 +25,17 @@ jobs:
|
|||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-
|
||||
- name: Cache pip packages
|
||||
id: pip-cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /tmp/cachepip
|
||||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-
|
||||
# - name: Cache pip packages
|
||||
# id: pip-cache
|
||||
# uses: actions/cache@v4
|
||||
# with:
|
||||
# path: /tmp/cachepip
|
||||
# key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
||||
# restore-keys: |
|
||||
# ${{ runner.os }}-pip-
|
||||
- name: Run Docker Container
|
||||
run: |
|
||||
docker run --rm \
|
||||
--volume "/tmp/cachepip:/wine/drive_c/users/root/appdata/local/pip/cache/" \
|
||||
--volume "${{ github.workspace }}:/src/" \
|
||||
batonogov/pyinstaller-windows:latest pyinstaller
|
||||
- name: Archive artifacts
|
||||
|
|
Loading…
Reference in a new issue