File tree 3 files changed +17
-5
lines changed
3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -163,16 +163,27 @@ jobs:
163
163
twine-username : " __token__"
164
164
twine-token : ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
165
165
166
- - name : Release to the public PyPI repository
167
- uses : ansys/ actions/release-pypi-public@v9
166
+ - name : " Download the library artifacts from build-library step "
167
+ uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
168
168
with :
169
- library-name : ${{ env.PACKAGE_NAME }}
170
- use-trusted-publisher : true
169
+ name : ${{ env.PACKAGE_NAME }}-artifacts
170
+ path : ${{ env.PACKAGE_NAME }}-artifacts
171
+
172
+ - name : " Upload artifacts to PyPI using trusted publisher"
173
+ uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
174
+ with :
175
+ repository-url : " https://upload.pypi.org/legacy/"
176
+ print-hash : true
177
+ packages-dir : ${{ env.PACKAGE_NAME }}-artifacts
178
+ skip-existing : false
171
179
172
180
- name : Release to GitHub
173
181
uses : ansys/actions/release-github@v9
174
182
with :
175
183
library-name : ${{ env.PACKAGE_NAME }}
184
+ token : ${{ secrets.GITHUB_TOKEN }}
185
+ generate_release_notes : false
186
+ add-artifact-attestation-notes : true
176
187
177
188
doc-deploy-dev :
178
189
name : " Deploy development documentation"
Original file line number Diff line number Diff line change
1
+ bump to 0.10.dev0
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
6
6
7
7
[project ]
8
8
name = " ansys-workbench-core"
9
- version = " 0.9 .dev0"
9
+ version = " 0.10 .dev0"
10
10
description = " A python wrapper for Ansys Workbench"
11
11
readme = " README.rst"
12
12
requires-python = " >=3.10,<4.0"
You can’t perform that action at this time.
0 commit comments