Skip to content

Commit 0949de1

Browse files
committed
fix(ci): typo and bust gh actions cache
1 parent 31f2bdb commit 0949de1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish_layer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
with:
4040
python-version: "3.9"
4141
cache: "pip"
42-
- name: Install project dependencies
42+
- name: Resolve and install project dependencies
4343
# CDK spawns system python when compiling stack
4444
# therefore it ignores both activated virtual env and cached interpreter by GH
4545
run: |
4646
poetry export --format requirements.txt --output requirements.txt
47-
pip install requirements.txt
47+
pip install -r requirements.txt
4848
- name: Set release notes tag
4949
run: |
5050
RELEASE_INPUT=${{ inputs.latest_published_version }}

.github/workflows/reusable_deploy_layer_stack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ jobs:
7171
with:
7272
python-version: "3.9"
7373
cache: "pip"
74-
- name: Install project dependencies
74+
- name: Resolve and install project dependencies
7575
# CDK spawns system python when compiling stack
7676
# therefore it ignores both activated virtual env and cached interpreter by GH
7777
run: |
7878
poetry export --format requirements.txt --output requirements.txt
79-
pip install requirements.txt
79+
pip install -r requirements.txt
8080
- name: install cdk and deps
8181
run: |
8282
npm install -g aws-cdk@2.29.0

0 commit comments

Comments
 (0)