File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -166,31 +166,32 @@ jobs:
166166 - id : linux/amd64
167167 # runner: ubuntu-latest-release-test-amd64
168168 runner : ubuntu-latest
169- artifact : ${{ env.APPLICATION }}_${{ inputs.release_version }}_linux_amd64 .tar.gz
169+ artifact : linux_amd64 .tar.gz
170170 - id : linux/amd64/v2
171171 # runner: ubuntu-latest-release-test-amd64
172172 runner : ubuntu-latest
173- artifact : ${{ env.APPLICATION }}_${{ inputs.release_version }}_linux_amd64v2 .tar.gz
173+ artifact : linux_amd64v2 .tar.gz
174174 - id : linux/arm64
175175 # runner: ubuntu-latest-release-test-arm64
176176 runner : ubuntu-latest
177- artifact : ${{ env.APPLICATION }}_${{ inputs.release_version }}_linux_arm64 .tar.gz
177+ artifact : linux_arm64 .tar.gz
178178
179179
180180 steps :
181181 - name : Set up Python
182182 uses : actions/setup-python@v4
183183
184- - name : Download artifact ${{ matrix.artifact }}
184+ - name : Download artifact ${{ env.APPLICATION }}_${{ inputs.release_version }}_${{ matrix.artifact }}
185185 uses : actions/download-artifact@v4
186186 with :
187- name : ${{ matrix.artifact }}
188- path : ${{ matrix.artifact }}
187+ name : ${{ env.APPLICATION }}_${{ inputs.release_version }}_${{ matrix.artifact }}
188+ path : ${{ env.APPLICATION }}_${{ inputs.release_version }}_${{ matrix.artifact }}
189189
190- - name : Extract artifact ${{ matrix.artifact }}
190+ - name : Extract artifact ${{ env.APPLICATION }}_${{ inputs.release_version }}_${{ matrix.artifact }}
191191 run : |
192192 pwd
193193 ls -lR .
194+ ls -l ${{ env.APPLICATION }}_${{ inputs.release_version }}_${{ matrix.artifact }}
194195
195196
196197 publish-release :
You can’t perform that action at this time.
0 commit comments