aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-windows.yml15
1 files changed, 9 insertions, 6 deletions
diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml
index c08f5a44..1c246383 100644
--- a/.github/workflows/build-windows.yml
+++ b/.github/workflows/build-windows.yml
@@ -10,18 +10,21 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
-
+
+ - name: Install poetry
+ run: C:\hostedtoolcache\windows\Python\3.9.13\x64\python -m pip install poetry
+
- name: Restore cache - poetry
uses: actions/cache@v3
with:
- path: ~\.cache\AppData\Local\pypoetry\Cache\virtualenvs
+ path: ~\AppData\Local\pypoetry\Cache\virtualenvs
key: ${{ runner.os }}-win64-poetry-${{ hashFiles('desktop/poetry.lock') }}
- - name: Install poetry
- run: C:\hostedtoolcache\windows\Python\3.9.13\x64\python -m pip install poetry
-
- name: Install poetry dependencies
- run: cd desktop && C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts\poetry install
+ run: |
+ cd desktop
+ C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts\poetry install
+ C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts\poetry env list --full-path
- name: Restore cache - tor
uses: actions/cache@v3