From 7338c5f0419e6eb0b6468db88d2469fdbdc9b071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Cortier?= Date: Thu, 4 Apr 2024 10:39:16 -0400 Subject: [PATCH] ci: fix OneDrive upload step in release workflow (#799) We are trying to rename the filename of the deb package to append the ".0", but it already contains this suffix. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12bff6e9d..8e2412e86 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -334,7 +334,8 @@ jobs: New-Item -Path "$destinationFolder" -ItemType "directory" Move-Item -Path "./windows/x86_64/DevolutionsGateway-x86_64-${version}.msi" -Destination "$destinationFolder/DevolutionsGateway-x86_64-${version}.0.msi" - Move-Item -Path "./linux/x86_64/devolutions-gateway_${version}_amd64.deb" -Destination "$destinationFolder/devolutions-gateway_${version}.0_amd64.deb" + + # Note that at this point the deb package is already named using the ".0" suffix, so we don’t rename. - name: Upload to OneDrive uses: ./.github/workflows/onedrive-upload