Skip to content

Commit

Permalink
Fix links in release notes script
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffail committed May 31, 2024
1 parent 63fbefb commit 82b7dd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/scripts/release_notes.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/sh
echo "For installation instructions check out the [getting started guide](https://www.docs.redpanda.com/redpanda-connect/guides/getting_started)."
echo "For installation instructions check out the [getting started guide](https://docs.redpanda.com/redpanda-connect/guides/getting_started)."
cat CHANGELOG.md | awk '
/^## [0-9]/ {
release++;
}
/TBD$/ {
print "";
print "NOTE: This is a release candidate, you can download a binary from this page or pull a docker image from https://github.com/redpanda-data/connect/pkgs/container/connect with the specific tag of the release candidate.";
print "NOTE: This is a release candidate, you can download a binary from this page.";
}
!/^## [0-9]/ {
if ( release == 1 ) print;
Expand Down

0 comments on commit 82b7dd2

Please sign in to comment.