File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ jobs:
102102 run : |
103103 copy "${{ vars.SIGNPATH_OUTPUT_DIR }}\*" inno-setup\input\
104104 $platform = "${{ matrix.platform }}"
105+ (Get-Content "inno-setup\Setup.iss") |
106+ ForEach-Object { $_ -replace '1.0.0', '${{ env.RELEASE_TAG }}' } |
107+ Set-Content "inno-setup\Setup.iss"
108+
105109 if ($platform -eq 'ARM64') {
106110 (Get-Content "inno-setup\Setup.iss") |
107111 ForEach-Object { $_ -replace 'x64compatible', 'arm64' } |
@@ -110,10 +114,6 @@ jobs:
110114 (Get-Content "inno-setup\Setup.iss") |
111115 ForEach-Object { $_ -replace '-x64', '-arm64' } |
112116 Set-Content "inno-setup\Setup.iss"
113-
114- (Get-Content "inno-setup\Setup.iss") |
115- ForEach-Object { $_ -replace '1.0.0', '${{ env.RELEASE_TAG }}' } |
116- Set-Content "inno-setup\Setup.iss"
117117
118118 if (Test-Path "inno-setup\input\Companion\VDDSysTray.exe") {Remove-Item "inno-setup\input\Companion\VDDSysTray.exe"}
119119 copy "inno-setup\input\Companion\arm64\VDDSysTray.exe" "inno-setup\input\Companion\"
You can’t perform that action at this time.
0 commit comments