diff options
| author | David Lönnhager <david.l@mullvad.net> | 2023-11-17 11:35:36 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-11-22 16:12:25 +0100 |
| commit | ac4d1eac84cbcd5fb6c47b97a6dc035da7de4d37 (patch) | |
| tree | b6a44f4a8115bfb2c07e349eea68428472128d91 /.github/workflows | |
| parent | 9a58be45b77fedf34b38585678bd8d2de3912750 (diff) | |
| download | mullvadvpn-ac4d1eac84cbcd5fb6c47b97a6dc035da7de4d37.tar.xz mullvadvpn-ac4d1eac84cbcd5fb6c47b97a6dc035da7de4d37.zip | |
Use git fetch directly to workaround issues with fetch-tags option in 'checkout' action
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/desktop-e2e.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index 511a450cc7..dc6f84a2eb 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -70,11 +70,10 @@ jobs: path: ~/.cache/mullvad-test/packages - name: Checkout repository uses: actions/checkout@v4 - with: - fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | + git fetch --tags --force ./test/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 if: '!cancelled()' @@ -140,11 +139,10 @@ jobs: path: ~/.cache/mullvad-test/packages - name: Checkout repository uses: actions/checkout@v4 - with: - fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | + git fetch --tags --force ./test/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 if: '!cancelled()' @@ -210,11 +208,10 @@ jobs: path: ~/Library/Caches/mullvad-test/packages - name: Checkout repository uses: actions/checkout@v4 - with: - fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | + git fetch --tags --force ./test/ci-runtests.sh ${{ matrix.os }} - uses: actions/upload-artifact@v3 if: '!cancelled()' |
