Skip to content

Commit 1d4a93c

Browse files
add missing poetry setup process in release workflow (#63)
* add missing poetry build process in release workflow * temp change to test the workflow * Revert "temp change to test the workflow" This reverts commit 6af1061.
1 parent 0eaca99 commit 1d4a93c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/_release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ jobs:
8181
steps:
8282
- uses: actions/checkout@v4
8383

84+
- name: Set up Python + Poetry ${{ env.POETRY_VERSION }}
85+
uses: "./.github/actions/poetry_setup"
86+
with:
87+
python-version: ${{ env.PYTHON_VERSION }}
88+
poetry-version: ${{ env.POETRY_VERSION }}
89+
working-directory: ${{ inputs.working-directory }}
90+
cache-key: release
91+
8492
- name: Build project for distribution
8593
run: poetry build
8694
working-directory: ${{ inputs.working-directory }}

0 commit comments

Comments
 (0)