Skip to content

Commit 537b3ee

Browse files
bump to 0.10.dev0 (#216)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent d83f9a4 commit 537b3ee

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.github/workflows/ci.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -163,16 +163,27 @@ jobs:
163163
twine-username: "__token__"
164164
twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
165165

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
168168
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
171179

172180
- name: Release to GitHub
173181
uses: ansys/actions/release-github@v9
174182
with:
175183
library-name: ${{ env.PACKAGE_NAME }}
184+
token: ${{ secrets.GITHUB_TOKEN }}
185+
generate_release_notes: false
186+
add-artifact-attestation-notes: true
176187

177188
doc-deploy-dev:
178189
name: "Deploy development documentation"

doc/changelog.d/216.dependencies.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bump to 0.10.dev0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
66

77
[project]
88
name = "ansys-workbench-core"
9-
version = "0.9.dev0"
9+
version = "0.10.dev0"
1010
description = "A python wrapper for Ansys Workbench"
1111
readme = "README.rst"
1212
requires-python = ">=3.10,<4.0"

0 commit comments

Comments
 (0)