Skip to content

Commit

Permalink
Add fetch-depth to desktop-e2e workflow
Browse files Browse the repository at this point in the history
Due to a bug in the `actions/checkout@v4` workflow, `git fetch` fails
when the workflow was triggered by a tag: actions/checkout#1467
  • Loading branch information
MarkusPettersson98 committed Nov 6, 2023
1 parent 4794a49 commit 5ced266
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 1
- name: Run end-to-end tests
shell: bash -ieo pipefail {0}
run: |
Expand Down Expand Up @@ -142,6 +143,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 1
- name: Run end-to-end tests
shell: bash -ieo pipefail {0}
run: |
Expand Down Expand Up @@ -212,6 +214,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 1
- name: Run end-to-end tests
shell: bash -ieo pipefail {0}
run: |
Expand Down

0 comments on commit 5ced266

Please sign in to comment.