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 f187ccc commit 97cf82cCopy full SHA for 97cf82c
.github/workflows/ci.yml
@@ -52,11 +52,10 @@ jobs:
52
- name: Set the expected dist artifact names
53
id: artifact-name
54
run: |
55
- echo 'sdist=${{ env.dist-name }}-${VERSION}.tar.gz' >> "${GITHUB_OUTPUT}"
56
- echo 'wheel=${{
57
- env.dist-name
58
- }}-${VERSION}-py3-none-any.whl' >> "${GITHUB_OUTPUT}"
+ echo "sdist=${DIST_NAME}-${VERSION}.tar.gz" >> "${GITHUB_OUTPUT}"
+ echo "wheel=${DIST_NAME}-${VERSION}-py3-none-any.whl" >> "${GITHUB_OUTPUT}"
59
env:
+ DIST_NAME: ${{ env.dist-name }}
60
VERSION: ${{ steps.dist-version.outputs.version }}
61
62
- name: Install build
0 commit comments