Skip to content

Commit

Permalink
fix: try use pipx install poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Oct 19, 2022
1 parent 0b7dbb1 commit 67df25a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,16 @@ jobs:
if: steps.cached-node_modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile

- name: Install poetry
run: pipx install poetry

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: poetry
cache-dependency-path: deployer/poetry.lock

- name: Install Python poetry
uses: snok/install-poetry@v1

- name: Install deployer
run: |
cd deployer
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr-deployer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install poetry
run: pipx install poetry

- name: Install Python
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prod-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@ jobs:
if: steps.cached-node_modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile

- name: Install poetry
run: pipx install poetry

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: poetry
cache-dependency-path: deployer/poetry.lock

- name: Install Python poetry
uses: snok/install-poetry@v1

- name: Install deployer
run: |
cd deployer
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@ jobs:
if: steps.cached-node_modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile

- name: Install poetry
run: pipx install poetry

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: poetry
cache-dependency-path: deployer/poetry.lock

- name: Install Python poetry
uses: snok/install-poetry@v1

- name: Install deployer
run: |
cd deployer
Expand Down

0 comments on commit 67df25a

Please sign in to comment.