diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-10-15 11:53:38 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-10-22 14:42:03 +0200 |
| commit | b81ea81dace1e7405c0e1970b1b14c347bbb1c66 (patch) | |
| tree | b9843e566fa6a31388f806f20fb6be86d1303cbe | |
| parent | 8a9c15f4f098c8197c46223bd9a67c734ab020d3 (diff) | |
| download | mullvadvpn-b81ea81dace1e7405c0e1970b1b14c347bbb1c66.tar.xz mullvadvpn-b81ea81dace1e7405c0e1970b1b14c347bbb1c66.zip | |
Add `--prune-tags` to e2e runner `git fetch`
| -rw-r--r-- | .github/workflows/desktop-e2e.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index 1a1abdcbb0..b0ae490dba 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -158,7 +158,7 @@ jobs: - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | - git fetch --tags --force + git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 @@ -234,7 +234,7 @@ jobs: - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | - git fetch --tags --force + git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 @@ -311,7 +311,7 @@ jobs: - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | - git fetch --tags --force + git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 |
