Fetch tags in github workflows

Tags are required to construct the version information.

Change-Id: Ic1af3e8f50eafafcc8a0c3ca37f362d6bd05e116
This commit is contained in:
Manuel Stahl 2024-04-18 21:11:41 +02:00
parent 03c4955ef7
commit 881760c8d8
3 changed files with 9 additions and 0 deletions

View file

@ -23,6 +23,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 100
fetch-tags: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

View file

@ -11,6 +11,9 @@ jobs:
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 100
fetch-tags: true
- uses: actions/setup-node@v4
with:
node-version: "18"

View file

@ -14,6 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
fetch-tags: true
- uses: actions/setup-node@v4
with:
node-version: "18"