Skip to content

Commit 85f90ce

Browse files
committed
fixit
1 parent 99be288 commit 85f90ce

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/actions/build/python/action.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ runs:
66
- name: Install project tools and dependencies
77
shell: bash
88
run: |
9-
pip install poetry
10-
poetry config virtualenvs.create false
9+
python -m venv .venv
10+
. .venv/bin/activate
11+
python -m pip install --upgrade pip
1112
make project-tools LANGUAGE=python

.github/workflows/sdk-pr.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,5 @@ jobs:
6363
env:
6464
GH_REPO: "stackitcloud/stackit-sdk-python"
6565
GH_TOKEN: ${{ secrets.SDK_PR_TOKEN }}
66-
run: |
67-
pip install poetry
68-
poetry config virtualenvs.create false
69-
python -m venv .venv
70-
. .venv/bin/activate
71-
python -m pip install --upgrade pip
66+
run: |
7267
scripts/sdk-create-pr.sh "generator-bot-${{ github.run_id }}" "Generated from GitHub run [${{ github.run_id }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})" "git@github.com:stackitcloud/stackit-sdk-python.git" "python"

0 commit comments

Comments
 (0)