Skip to content

Commit 194722a

Browse files
authored
Merge pull request #2281 from mboersma/fix-link
Handle compression at docs.github.com when checking markdown links
2 parents 9c74c71 + df0afc2 commit 194722a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.markdownlinkcheck.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
"ignorePatterns": [{
33
"pattern": "^https://calendar.google.com/calendar"
44
}],
5+
"httpHeaders": [{
6+
"comment": "Workaround as suggested here: https://github.com/tcort/markdown-link-check/issues/201",
7+
"urls": ["https://docs.github.com/"],
8+
"headers": {
9+
"Accept-Encoding": "zstd, br, gzip, deflate"
10+
}
11+
}],
512
"timeout": "5s",
613
"retryOn429": true,
714
"retryCount": 5,

docs/book/src/developers/releasing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- Create tag with git
2323
- `export RELEASE_TAG=v1.2.3` (the tag of the release to be cut)
2424
- `git tag -s ${RELEASE_TAG} -m "${RELEASE_TAG}"`
25-
- `-s` creates a signed tag, you must have a GPG key [added to your GitHub account](https://docs.github.com/en/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-gpg-key)
25+
- `-s` creates a signed tag, you must have a GPG key [added to your GitHub account](https://docs.github.com/en/authentication/managing-commit-signature-verification/adding-a-new-gpg-key-to-your-github-account)
2626
- `git push upstream ${RELEASE_TAG}`
2727

2828
This will automatically trigger a [Github Action](https://github.com/kubernetes-sigs/cluster-api-provider-azure/actions) to create a draft release.

0 commit comments

Comments
 (0)