Skip to content

Commit 3062042

Browse files
committed
fixup! Output app version directly from workflow
1 parent 0cc8d96 commit 3062042

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/desktop-e2e.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ jobs:
364364
path: .\dist\*.exe
365365

366366
e2e-test-windows:
367-
needs: [prepare-matrices, build-windows]
367+
needs: [prepare-matrices, build-windows, get-app-version]
368368
if: |
369369
!cancelled() &&
370370
needs.prepare-matrices.outputs.windows_matrix != '[]' &&
@@ -387,6 +387,8 @@ jobs:
387387
uses: actions/checkout@v4
388388
- name: Run end-to-end tests
389389
shell: bash -ieo pipefail {0}
390+
env:
391+
CURRENT_VERSION: ${{needs.get-app-version.outputs.mullvad-version}}
390392
run: |
391393
git fetch --tags --prune-tags --force
392394
export TEST_FILTERS="${{ github.event.inputs.tests }}"
@@ -438,7 +440,7 @@ jobs:
438440
./dist/app-e2e-*
439441
440442
e2e-test-macos:
441-
needs: [prepare-matrices, build-macos]
443+
needs: [prepare-matrices, build-macos, get-app-version]
442444
if: |
443445
!cancelled() &&
444446
needs.prepare-matrices.outputs.macos_matrix != '[]' &&
@@ -461,6 +463,8 @@ jobs:
461463
uses: actions/checkout@v4
462464
- name: Run end-to-end tests
463465
shell: bash -ieo pipefail {0}
466+
env:
467+
CURRENT_VERSION: ${{needs.get-app-version.outputs.mullvad-version}}
464468
run: |
465469
git fetch --tags --prune-tags --force
466470
export TEST_FILTERS="${{ github.event.inputs.tests }}"

0 commit comments

Comments
 (0)