File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -70,17 +70,25 @@ jobs:
7070 - uses : actions/checkout@v4
7171 with :
7272 fetch-depth : 0
73+ - name : Set up Python 3.11
74+ uses : actions/setup-python@v5
75+ with :
76+ python-version : " 3.11"
77+
78+ - uses : snok/install-poetry@v1.4.1
79+
80+ - name : Install Dependencies
81+ run : poetry install
82+ shell : bash
7383
7484 - name : Python Semantic Release
7585 id : release
76- uses : python-semantic-release/python-semantic-release@v8.7 .0
86+ uses : python-semantic-release/python-semantic-release@v9.14 .0
7787 with :
7888 github_token : ${{ secrets.GITHUB_TOKEN }}
7989
8090 - name : Publish package distributions to PyPI
8191 uses : pypa/gh-action-pypi-publish@v1.12.2
82- with :
83- password : ${{ secrets.PYPI_TOKEN }}
8492
8593 # NOTE: DO NOT wrap the conditional in ${{ }} as it will always evaluate to true.
8694 # See https://github.com/actions/runner/issues/1173
You can’t perform that action at this time.
0 commit comments