We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358611b commit b28015cCopy full SHA for b28015c
.github/workflows/build-desktop.yml
@@ -69,10 +69,11 @@ jobs:
69
70
- name: Rename Windows MSI
71
if: matrix.format == 'windows'
72
+ shell: pwsh
73
run: |
- FILE=$(find composeApp/build/compose/binaries -name "*.msi" -type f)
74
- NEW="DevAnalyzer-${{ github.ref_name }}-windows-x64.msi"
75
- mv "$FILE" "$(dirname "$FILE")/$NEW"
+ $file = Get-ChildItem -Recurse -Filter *.msi -Path "composeApp/build/compose/binaries" | Select-Object -First 1
+ $newName = "DevAnalyzer-${{ github.ref_name }}-windows-x64.msi"
76
+ Rename-Item -Path $file.FullName -NewName $newName
77
78
- name: Rename Linux DEB
79
if: matrix.format == 'linux'
0 commit comments