We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8de6bf8 + 9c5aac5 commit 90be483Copy full SHA for 90be483
.github/workflows/desktop-e2e.yml
@@ -206,7 +206,16 @@ jobs:
206
vs-version: 16
207
- name: Build app
208
shell: bash
209
- run: ./build.sh
+ run: |
210
+ ./build.sh
211
+ # FIXME: Strip architecture-specific suffix. The remaining steps assume that the windows installer has no
212
+ # arch-suffix. This should probably be addressed when we add a Windows arm runner. Or maybe it will just keep
213
+ # on working ¯\_(ツ)_/¯
214
+ pushd dist
215
+ original_file=$(find *.exe)
216
+ new_file=$(echo $original_file | perl -pe "s/^(MullvadVPN-.*?)(_x64|_arm64)?(\.exe)$/\1\3/p")
217
+ mv "$original_file" "$new_file"
218
+ popd
219
- name: Build test executable
220
221
run: ./desktop/packages/mullvad-vpn/scripts/build-test-executable.sh
0 commit comments