mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-22 06:21:28 +00:00
Fetch tags in github workflows
Tags are required to construct the version information. Change-Id: Ic1af3e8f50eafafcc8a0c3ca37f362d6bd05e116
This commit is contained in:
parent
03c4955ef7
commit
881760c8d8
3 changed files with 9 additions and 0 deletions
3
.github/workflows/docker-release.yml
vendored
3
.github/workflows/docker-release.yml
vendored
|
@ -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
|
||||
|
|
3
.github/workflows/edge_ghpage.yml
vendored
3
.github/workflows/edge_ghpage.yml
vendored
|
@ -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"
|
||||
|
|
3
.github/workflows/github-release.yml
vendored
3
.github/workflows/github-release.yml
vendored
|
@ -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…
Reference in a new issue