Skip to content

Commit d2c4e3f

Browse files
Merge pull request #553 from SgtCoDFish/fix-bookworm-upgrade
Add fetch-depth:0 to bookworm upgrade job
2 parents 696bd25 + 4e82b1b commit d2c4e3f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/debian-trust-package-upgrade-bookworm.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
exit 1
2626
2727
- uses: actions/checkout@v4
28+
# Adding `fetch-depth: 0` makes sure tags are also fetched. We need
29+
# the tags so `git describe` returns a valid version.
30+
# see https://github.com/actions/checkout/issues/701 for extra info about this option
31+
with: { fetch-depth: 0 }
2832

2933
- id: go-version
3034
run: |

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ As well as the trust-manager container images, we also publish a trust package i
3838
3939
This repo will produce the following artifacts each release. For documentation on how those artifacts are produced see the "Process" section.
4040
41-
- *Container Images* - Container images for the are published to `quay.io/jetstack`.
41+
- *Container Images* - Container images for the are published to `quay.io/jetstack`.
4242
- *Helm chart* - An official Helm chart is maintained within this repo and published to `quay.io/jetstack` and `charts.jetstack.io` on each release.
4343
4444
[release workflow]: https://github.com/cert-manager/trust-manager/actions/workflows/release.yaml
45-
[releases page]: https://github.com/cert-manager/trust-manager/releases
45+
[releases page]: https://github.com/cert-manager/trust-manager/releases

0 commit comments

Comments
 (0)