Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #17212: Fix doc build #707

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ changelogs-build:
cd $@ && git checkout master && git pull
for version in $(ALL_VERSIONS); do \
cd $@ && git checkout master && git branch -df "branches/rudder/$$version" ; git checkout -b "branches/rudder/$$version" ; \
sed -i "s@version: \"6.1\"@version: \"$$version\"@" src/changelogs/antora.yml ; \
sed -i "s@RUDDER_VERSION = 6.1@RUDDER_VERSION = $$version@" src/changelogs/dependencies/Makefile ; \
sed -i "s@version: \"6.2\"@version: \"$$version\"@" src/changelogs/antora.yml ; \
sed -i "s@RUDDER_VERSION = 6.2@RUDDER_VERSION = $$version@" src/changelogs/dependencies/Makefile ; \
cd src/changelogs && make ; \
cd ../.. && git add -f src/changelogs && git commit --allow-empty -m "Build" ; cd .. ; \
done
Expand Down
2 changes: 1 addition & 1 deletion src/changelogs/dependencies/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Builds dynamic dependencies from other repos

RUDDER_VERSION = 6.1
RUDDER_VERSION = 6.2

.PHONY: clean changelogs
all: changelogs
Expand Down