Missing slash?
This commit is contained in:
parent
ea9298f346
commit
8ff11e1f74
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build_artifacts.yaml
vendored
4
.github/workflows/build_artifacts.yaml
vendored
|
@ -29,14 +29,14 @@ jobs:
|
||||||
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 "/tmp/cachepip:/wine/drive_c/users/root/appdata/local/pip/cache/" \
|
||||||
--volume "${{ github.workspace }}:/src/" \
|
--volume "${{ github.workspace }}:/src/" \
|
||||||
batonogov/pyinstaller-windows:latest
|
batonogov/pyinstaller-windows:latest
|
||||||
- name: Archive artifacts
|
- name: Archive artifacts
|
||||||
|
|
Loading…
Reference in a new issue