Skip to content

Commit

Permalink
ci: fix OneDrive upload step in release workflow (#799)
Browse files Browse the repository at this point in the history
We are trying to rename the filename of the deb package to append the
".0", but it already contains this suffix.
  • Loading branch information
CBenoit authored Apr 4, 2024
1 parent 23ed009 commit 7338c5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7338c5f

Please sign in to comment.