We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4771148 commit 8e704ecCopy full SHA for 8e704ec
1 file changed
.github/workflows/python.yml
@@ -1,6 +1,6 @@
1
# NOTE: This file is auto-generated by OpenAPI Generator.
2
3
-name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
+name: Publish Python 🐍 distribution 📦 to PyPI
4
5
on: push
6
@@ -70,11 +70,11 @@ jobs:
70
./dist/*.whl
71
- name: Upload artifact signatures to GitHub Release
72
env:
73
- GITHUB_TOKEN: $
+ GITHUB_TOKEN: ${{ github.token }}
74
# Upload to GitHub Release using the `gh` CLI.
75
# `dist/` contains the built packages, and the
76
# sigstore-produced signatures and certificates.
77
run: >-
78
gh release upload
79
- '$' dist/**
80
- --repo '$'
+ '${{ github.ref_name }}' dist/**
+ --repo '${{ github.repository }}'
0 commit comments