File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff 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 :
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
You can’t perform that action at this time.
0 commit comments