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:
70
70
- uses : actions/checkout@v4
71
71
with :
72
72
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
+
79
+
80
+ - name : Install Dependencies
81
+ run : poetry install
82
+ shell : bash
73
83
74
84
- name : Python Semantic Release
75
85
id : release
76
- uses : python-semantic-release/python-semantic-release@v8.7 .0
86
+ uses : python-semantic-release/python-semantic-release@v9.14 .0
77
87
with :
78
88
github_token : ${{ secrets.GITHUB_TOKEN }}
79
89
80
90
- name : Publish package distributions to PyPI
81
91
82
- with :
83
- password : ${{ secrets.PYPI_TOKEN }}
84
92
85
93
# NOTE: DO NOT wrap the conditional in ${{ }} as it will always evaluate to true.
86
94
# See https://github.com/actions/runner/issues/1173
You can’t perform that action at this time.
0 commit comments