We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85e7be1 commit 9586d34Copy full SHA for 9586d34
.github/workflows/generate-current-manifests.yml
@@ -29,20 +29,18 @@ jobs:
29
python-version: '3.10'
30
cache: 'pip'
31
32
- - name: Install poetry
+ - name: Install Poetry
33
run: |
34
- pip install poetry
+ curl -sSL https://install.python-poetry.org | python3 -
35
+ export PATH="$HOME/.local/bin:$PATH"
36
- - name: Set up Poetry
37
+ - name: Install dependencies
38
- python -m venv .venv
39
- source .venv/bin/activate
40
poetry install
41
- poetry shell
42
43
- name: Generate all manifests
44
working-directory: processes
45
- run: ./generate_all_templates.sh
+ run: poetry run ./generate_all_templates.sh
46
47
- name: Create Pull Request
48
uses: peter-evans/create-pull-request@v5
0 commit comments