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:
130
130
with :
131
131
name : dist-packages-${{ github.sha }}
132
132
path : dist
133
- - run : |
133
+ - name : Browse folder
134
+ id : folder
135
+ run : |
134
136
sudo apt install -q -y tree
135
137
tree -L 2 -h dist/
138
+ python -c "print('pkg=' + '${{ matrix.name }}'.lower())" >> $GITHUB_OUTPUT
136
139
- uses : ./.github/actions/pkg-publish
137
140
with :
138
- pkg-folder : dist/$(echo 'console.log("$ {{ matrix.name }}".toLowerCase())')
141
+ pkg-folder : dist/${{ steps.folder.outputs.pkg }}
139
142
pypi-test-token : ${{ secrets[format('PYPI_TEST_TOKEN_{0}', matrix.name)] }}
140
143
141
144
@@ -152,12 +155,15 @@ jobs:
152
155
with :
153
156
name : dist-packages-${{ github.sha }}
154
157
path : dist
155
- - run : |
158
+ - name : Browse folder
159
+ id : folder
160
+ run : |
156
161
sudo apt install -q -y tree
157
162
tree -L 2 -h dist/
163
+ python -c "print('pkg=' + '${{ matrix.name }}'.lower())" >> $GITHUB_OUTPUT
158
164
- uses : ./.github/actions/pkg-publish
159
165
with :
160
- pkg-folder : dist/$(echo 'console.log("$ {{ matrix.name }}".toLowerCase())')
166
+ pkg-folder : dist/${{ steps.folder.outputs.pkg }}
161
167
pypi-token : ${{ secrets[format('PYPI_TOKEN_{0}', matrix.name)] }}
162
168
163
169
You can’t perform that action at this time.
0 commit comments