We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7268f3a commit b963c80Copy full SHA for b963c80
2 files changed
.github/workflows/terraform.yml
@@ -7,6 +7,7 @@ on:
7
- "handler.py"
8
- "create_package.py"
9
- "Pipfile*"
10
+ - "requirements.txt"
11
- "terraform/**"
12
- ".github/workflows/terraform.yml"
13
push:
@@ -46,7 +47,7 @@ jobs:
46
47
cache-dependency-path: Pipfile.lock
48
- name: Install pipenv & create dependencies
49
run: |
- pip install --prefer-binary pipenv
50
+ pip install --prefer-binary -r requirements.txt
51
pipenv install
52
pipenv requirements > requirements.txt
53
- name: Create deployment package
requirements.txt
@@ -0,0 +1 @@
1
+pipenv==2025.0.4
0 commit comments