Skip to content

Commit

Permalink
Remove v prefix from RP Connect version tag (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSCahill authored Jun 27, 2024
1 parent 494bb26 commit d94b1b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extensions/version-fetcher/get-latest-connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const github = new OctokitWithRetries(githubOptions);
module.exports = async () => {
try {
const release = await github.rest.repos.getLatestRelease({ owner, repo });
tag = release.data.tag_name;
tag = release.data.tag_name.replace(/^v/, '');
return tag;
} catch (error) {
console.error(error);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@redpanda-data/docs-extensions-and-macros",
"version": "3.5.3",
"version": "3.5.4",
"description": "Antora extensions and macros developed for Redpanda documentation.",
"keywords": [
"antora",
Expand Down

0 comments on commit d94b1b9

Please sign in to comment.