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 2bb45a7 commit d212d9bCopy full SHA for d212d9b
1 file changed
.github/workflows/publish-python.yml
@@ -51,8 +51,8 @@ jobs:
51
echo "PYPI_API_TOKEN not set — skipping PyPI; wheels still ship to the GitHub Release."
52
fi
53
- name: GitHub Release
54
- env:
55
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
- run: |
57
- gh release create "$GITHUB_REF_NAME" dist/* --title "Python SDK $GITHUB_REF_NAME" --generate-notes \
58
- || gh release upload "$GITHUB_REF_NAME" dist/* --clobber
+ uses: softprops/action-gh-release@v2
+ with:
+ files: dist/*
+ name: Python SDK ${{ github.ref_name }}
+ generate_release_notes: true
0 commit comments