Skip to content

Commit

Permalink
Fetch tags in github workflows
Browse files Browse the repository at this point in the history
Tags are required to construct the version information.

Change-Id: Ic1af3e8f50eafafcc8a0c3ca37f362d6bd05e116
  • Loading branch information
awesome-manuel committed Apr 19, 2024
1 parent 03c4955 commit 881760c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/edge_ghpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 881760c

Please sign in to comment.