We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e9c99b commit e89edd2Copy full SHA for e89edd2
.github/workflows/ci_cd.yml
@@ -152,10 +152,17 @@ jobs:
152
needs: [build-library]
153
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
154
steps:
155
+
156
- name: "Release to the private PyPI repository"
157
uses: pyansys/actions/release-pypi-private@v2
158
with:
159
library-name: ${{ env.LIBRARY_NAME }}
160
twine-username: "__token__"
161
twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
162
163
+ - name: "Release to the public PyPI repository"
164
+ uses: pyansys/actions/release-pypi-public@v2
165
+ with:
166
+ library-name: ${{ env.LIBRARY_NAME }}
167
+ twine-username: "__token__"
168
+ twine-token: ${{ secrets.PYPI_TOKEN }}
0 commit comments