File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -130,12 +130,15 @@ jobs:
130130 with :
131131 name : dist-packages-${{ github.sha }}
132132 path : dist
133- - run : |
133+ - name : Browse folder
134+ id : folder
135+ run : |
134136 sudo apt install -q -y tree
135137 tree -L 2 -h dist/
138+ python -c "print('pkg=' + '${{ matrix.name }}'.lower())" >> $GITHUB_OUTPUT
136139 - uses : ./.github/actions/pkg-publish
137140 with :
138- pkg-folder : dist/$(echo 'console.log("$ {{ matrix.name }}".toLowerCase())')
141+ pkg-folder : dist/${{ steps.folder.outputs.pkg }}
139142 pypi-test-token : ${{ secrets[format('PYPI_TEST_TOKEN_{0}', matrix.name)] }}
140143
141144
@@ -152,12 +155,15 @@ jobs:
152155 with :
153156 name : dist-packages-${{ github.sha }}
154157 path : dist
155- - run : |
158+ - name : Browse folder
159+ id : folder
160+ run : |
156161 sudo apt install -q -y tree
157162 tree -L 2 -h dist/
163+ python -c "print('pkg=' + '${{ matrix.name }}'.lower())" >> $GITHUB_OUTPUT
158164 - uses : ./.github/actions/pkg-publish
159165 with :
160- pkg-folder : dist/$(echo 'console.log("$ {{ matrix.name }}".toLowerCase())')
166+ pkg-folder : dist/${{ steps.folder.outputs.pkg }}
161167 pypi-token : ${{ secrets[format('PYPI_TOKEN_{0}', matrix.name)] }}
162168
163169
You can’t perform that action at this time.
0 commit comments