Skip to content

Commit 97cf82c

Browse files
committed
use double quotes
1 parent f187ccc commit 97cf82c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,10 @@ jobs:
5252
- name: Set the expected dist artifact names
5353
id: artifact-name
5454
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}"
55+
echo "sdist=${DIST_NAME}-${VERSION}.tar.gz" >> "${GITHUB_OUTPUT}"
56+
echo "wheel=${DIST_NAME}-${VERSION}-py3-none-any.whl" >> "${GITHUB_OUTPUT}"
5957
env:
58+
DIST_NAME: ${{ env.dist-name }}
6059
VERSION: ${{ steps.dist-version.outputs.version }}
6160

6261
- name: Install build

0 commit comments

Comments
 (0)