Skip to content

Commit ee2c9ee

Browse files
committed
t
1 parent ce723ca commit ee2c9ee

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/testing-release-2-60-testing-test.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)