Fetch tags in github workflows

Tags are required to construct the version information.

Change-Id: Ic1af3e8f50eafafcc8a0c3ca37f362d6bd05e116
pull/508/head
Manuel Stahl 5 months ago
parent 03c4955ef7
commit 881760c8d8

@ -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

@ -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"

@ -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"

Loading…
Cancel
Save