File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ jobs:
39
39
with :
40
40
python-version : " 3.9"
41
41
cache : " pip"
42
- - name : Install project dependencies
42
+ - name : Resolve and install project dependencies
43
43
# CDK spawns system python when compiling stack
44
44
# therefore it ignores both activated virtual env and cached interpreter by GH
45
45
run : |
46
46
poetry export --format requirements.txt --output requirements.txt
47
- pip install requirements.txt
47
+ pip install -r requirements.txt
48
48
- name : Set release notes tag
49
49
run : |
50
50
RELEASE_INPUT=${{ inputs.latest_published_version }}
Original file line number Diff line number Diff line change @@ -71,12 +71,12 @@ jobs:
71
71
with :
72
72
python-version : " 3.9"
73
73
cache : " pip"
74
- - name : Install project dependencies
74
+ - name : Resolve and install project dependencies
75
75
# CDK spawns system python when compiling stack
76
76
# therefore it ignores both activated virtual env and cached interpreter by GH
77
77
run : |
78
78
poetry export --format requirements.txt --output requirements.txt
79
- pip install requirements.txt
79
+ pip install -r requirements.txt
80
80
- name : install cdk and deps
81
81
run : |
82
82
npm install -g aws-cdk@2.29.0
You can’t perform that action at this time.
0 commit comments