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 13308d5 commit 5e4e015Copy full SHA for 5e4e015
source/guides/github-actions-ci-cd-sample/publish-to-test-pypi.yml
@@ -78,8 +78,8 @@ jobs:
78
GITHUB_TOKEN: ${{ github.token }}
79
run: >-
80
gh release create
81
- '${{ github.ref_name }}'
82
- --repo '${{ github.repository }}'
+ "$GITHUB_REF_NAME"
+ --repo "$GITHUB_REPOSITORY"
83
--notes ""
84
- name: Upload artifact signatures to GitHub Release
85
env:
@@ -89,8 +89,8 @@ jobs:
89
# sigstore-produced signatures and certificates.
90
91
gh release upload
92
- '${{ github.ref_name }}' dist/**
93
+ "$GITHUB_REF_NAME" dist/**
94
95
publish-to-testpypi:
96
name: Publish Python 🐍 distribution 📦 to TestPyPI
0 commit comments