mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-22 14:31:27 +00:00
Fix fetching tags in github workflows
The actions/checkout step has some bugs: https://github.com/actions/checkout/issues/1467 Change-Id: I6bd88433425657081c2033b55bf01587979983df
This commit is contained in:
parent
6d9abe85b0
commit
400e9aa416
2 changed files with 0 additions and 4 deletions
1
.github/workflows/docker-release.yml
vendored
1
.github/workflows/docker-release.yml
vendored
|
@ -25,7 +25,6 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 100
|
fetch-depth: 100
|
||||||
fetch-tags: true
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
3
.github/workflows/github-release.yml
vendored
3
.github/workflows/github-release.yml
vendored
|
@ -14,9 +14,6 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
fetch-depth: 100
|
|
||||||
fetch-tags: true
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "20"
|
node-version: "20"
|
||||||
|
|
Loading…
Reference in a new issue