@@ -123,7 +123,9 @@ jobs:
123123 shell : pwsh
124124 env :
125125 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
126- run : gh run download ${{ needs.preflight.outputs.run }} -n webapp-client -n docker -n devolutions-gateway -n native-libs --repo $Env:GITHUB_REPOSITORY
126+ run : |
127+ gh run download ${{ needs.preflight.outputs.run }} -n webapp-client -n docker -n devolutions-gateway-signed -n native-libs --repo $Env:GITHUB_REPOSITORY
128+ Move-Item -Path devolutions-gateway-signed -Destination devolutions-gateway
127129
128130 # # workflow_call: The same artifacts persist across the entire run, so the PowerShell/DevolutionsGateway directory will still exist from the CI workflow
129131 - name : Manage artifacts
@@ -224,7 +226,11 @@ jobs:
224226 shell : pwsh
225227 env :
226228 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
227- run : gh run download ${{ needs.preflight.outputs.run }} -n jetsocat -n devolutions-gateway -n devolutions-agent -n webapp-client -n changelog --repo $Env:GITHUB_REPOSITORY
229+ run : |
230+ gh run download ${{ needs.preflight.outputs.run }} -n jetsocat-signed -n devolutions-gateway-signed -n devolutions-agent-signed -n webapp-client -n changelog --repo $Env:GITHUB_REPOSITORY
231+ Move-Item -Path jetsocat-signed -Destination jetsocat
232+ Move-Item -Path devolutions-gateway-signed -Destination devolutions-gateway
233+ Move-Item -Path devolutions-agent-signed -Destination devolutions-agent
228234
229235 - name : Manage artifacts
230236 shell : pwsh
@@ -282,7 +288,9 @@ jobs:
282288 shell : pwsh
283289 env :
284290 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
285- run : gh run download ${{ needs.preflight.outputs.run }} -n devolutions-gateway --repo $Env:GITHUB_REPOSITORY
291+ run : |
292+ gh run download ${{ needs.preflight.outputs.run }} -n devolutions-gateway-signed --repo $Env:GITHUB_REPOSITORY
293+ Move-Item -Path devolutions-gateway-signed -Destination devolutions-gateway
286294
287295 # # workflow_call: The same artifacts persist across the entire run, so the PowerShell/DevolutionsGateway directory will still exist from the CI workflow
288296 - name : Manage artifacts
@@ -350,7 +358,9 @@ jobs:
350358 shell : pwsh
351359 env :
352360 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
353- run : gh run download ${{ needs.preflight.outputs.run }} -n devolutions-gateway --repo $Env:GITHUB_REPOSITORY
361+ run : |
362+ gh run download ${{ needs.preflight.outputs.run }} -n devolutions-gateway-signed --repo $Env:GITHUB_REPOSITORY
363+ Move-Item -Path devolutions-gateway-signed -Destination devolutions-gateway
354364
355365 - name : Prepare upload
356366 id : prepare
@@ -411,7 +421,9 @@ jobs:
411421 shell : pwsh
412422 env :
413423 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
414- run : gh run download ${{ needs.preflight.outputs.run }} -n devolutions-agent --repo $Env:GITHUB_REPOSITORY
424+ run : |
425+ gh run download ${{ needs.preflight.outputs.run }} -n devolutions-agent-signed --repo $Env:GITHUB_REPOSITORY
426+ Move-Item -Path devolutions-agent-signed -Destination devolutions-agent
415427
416428 - name : Prepare upload
417429 id : prepare
0 commit comments