File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 29
29
with :
30
30
fetch-depth : 0
31
31
- name : Install poetry
32
- run : pipx install poetry
32
+ # CDK spawns system python when compiling stack
33
+ # therefore it ignores activated virtual env, thus missing deps
34
+ run : |
35
+ pipx install poetry
36
+ poetry config virtualenvs.create false
33
37
- name : Setup Node.js
34
38
uses : actions/setup-node@v3
35
39
with :
Original file line number Diff line number Diff line change 56
56
- name : checkout
57
57
uses : actions/checkout@v3
58
58
- name : Install poetry
59
- run : pipx install poetry
59
+ # CDK spawns system python when compiling stack
60
+ # therefore it ignores activated virtual env, thus missing deps
61
+ run : |
62
+ pipx install poetry
63
+ poetry config virtualenvs.create false
60
64
- name : aws credentials
61
65
uses : aws-actions/configure-aws-credentials@v1
62
66
with :
You can’t perform that action at this time.
0 commit comments