Remove pip cache

This commit is contained in:
Djuri Baars 2024-06-09 15:25:54 +02:00
parent 577b71453c
commit c4302b1a19

View file

@ -25,18 +25,17 @@ jobs:
key: ${{ runner.os }}-buildx-${{ github.sha }} key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: | restore-keys: |
${{ runner.os }}-buildx- ${{ runner.os }}-buildx-
- name: Cache pip packages # - name: Cache pip packages
id: pip-cache # id: pip-cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: /tmp/cachepip # path: /tmp/cachepip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} # key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: | # restore-keys: |
${{ runner.os }}-pip- # ${{ runner.os }}-pip-
- name: Run Docker Container - name: Run Docker Container
run: | run: |
docker run --rm \ docker run --rm \
--volume "/tmp/cachepip:/wine/drive_c/users/root/appdata/local/pip/cache/" \
--volume "${{ github.workspace }}:/src/" \ --volume "${{ github.workspace }}:/src/" \
batonogov/pyinstaller-windows:latest pyinstaller batonogov/pyinstaller-windows:latest pyinstaller
- name: Archive artifacts - name: Archive artifacts