From f7c770a870e6afd604e979bca149d6081a6c11cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Mon, 23 Oct 2023 16:27:19 +0200 Subject: [PATCH] Fetch tags during checkout in e2e tests --- .github/workflows/desktop-e2e.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index b28e70232df1..86cf45345e8c 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | @@ -30,6 +32,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: | @@ -45,6 +49,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-tags: true - name: Run end-to-end tests shell: bash -ieo pipefail {0} run: |