@@ -364,7 +364,7 @@ jobs:
364
364
path : .\dist\*.exe
365
365
366
366
e2e-test-windows :
367
- needs : [prepare-matrices, build-windows]
367
+ needs : [prepare-matrices, build-windows, get-app-version ]
368
368
if : |
369
369
!cancelled() &&
370
370
needs.prepare-matrices.outputs.windows_matrix != '[]' &&
@@ -387,6 +387,8 @@ jobs:
387
387
uses : actions/checkout@v4
388
388
- name : Run end-to-end tests
389
389
shell : bash -ieo pipefail {0}
390
+ env :
391
+ CURRENT_VERSION : ${{needs.get-app-version.outputs.mullvad-version}}
390
392
run : |
391
393
git fetch --tags --prune-tags --force
392
394
export TEST_FILTERS="${{ github.event.inputs.tests }}"
@@ -438,7 +440,7 @@ jobs:
438
440
./dist/app-e2e-*
439
441
440
442
e2e-test-macos :
441
- needs : [prepare-matrices, build-macos]
443
+ needs : [prepare-matrices, build-macos, get-app-version ]
442
444
if : |
443
445
!cancelled() &&
444
446
needs.prepare-matrices.outputs.macos_matrix != '[]' &&
@@ -461,6 +463,8 @@ jobs:
461
463
uses : actions/checkout@v4
462
464
- name : Run end-to-end tests
463
465
shell : bash -ieo pipefail {0}
466
+ env :
467
+ CURRENT_VERSION : ${{needs.get-app-version.outputs.mullvad-version}}
464
468
run : |
465
469
git fetch --tags --prune-tags --force
466
470
export TEST_FILTERS="${{ github.event.inputs.tests }}"
0 commit comments