We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ec36d commit b2d52d5Copy full SHA for b2d52d5
1 file changed
.github/workflows/publish.yml
@@ -76,12 +76,11 @@ jobs:
76
77
- name: Configure and Publish
78
if: steps.check_version.outputs.should_publish == 'true'
79
- run: |
80
- # poetry config repositories.${{ env.REPO_ALIAS }} ${{ env.PYPI_URL }}
81
- # poetry config pypi-token.${{ env.REPO_ALIAS }} ${{ secrets.PYPI_TOKEN }}
82
- poetry publish --build
+ - name: Publish
+ uses: pypa/gh-action-pypi-publish@release/v1
83
84
- # Add Success Summary
+ - name: Add Success Summary
+ run: |
85
NAME=${{ steps.check_version.outputs.pkg_name }}
86
VER=${{ steps.check_version.outputs.pkg_ver }}
87
echo "### ✅ Success: Published $NAME v$VER" >> $GITHUB_STEP_SUMMARY
0 commit comments