Checkout all branches/history in workflows

Otherwise that branch check in the release job fails. And who knows what
else will fail in the future, so lets not be stingy.
This commit is contained in:
Simon Frei 2023-07-16 16:55:51 +02:00
parent fdc54dbee4
commit a351744ec7
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: build
run: |
@ -51,6 +52,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Ensure release branch
run: |

View File

@ -22,6 +22,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- uses: docker/setup-buildx-action@v2