Skip to content

Commit 8d8e43b

Browse files
committed
ELI-452: install request using poetry
1 parent 2eac4df commit 8d8e43b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/cicd-3-test.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,19 @@ jobs:
7979
with:
8080
ref: ${{ github.event.inputs.tag }}
8181

82+
- name: "Install Poetry"
83+
run: |
84+
curl -sSL https://install.python-poetry.org | python3 -
85+
echo "$HOME/.local/bin" >> $GITHUB_PATH
86+
8287
- name: "Set up Python"
8388
uses: actions/setup-python@v5
8489
with:
8590
python-version: "3.13"
86-
cache: 'poetry' # caching poetry dependencies
87-
- run: poetry install
91+
cache: 'poetry'
92+
93+
- name: "Install dependencies"
94+
run: poetry install
8895

8996
- name: "Manage Release"
9097
env:
@@ -93,4 +100,4 @@ jobs:
93100
INPUT_RELEASE_TYPE: ${{ inputs.release_type }}
94101
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
95102
GITHUB_REPOSITORY: ${{ github.repository }}
96-
run: python scripts/seed_users/tag_and_release.py
103+
run: poetry run python scripts/seed_users/tag_and_release.py

0 commit comments

Comments
 (0)