This is an automated email from the ASF dual-hosted git repository. cdutz pushed a commit to branch rel/0.13 in repository https://gitbox.apache.org/repos/asf/plc4x.git
commit 7e0625e8e2ea6daa61f339688c0d5ff98f256c25 Author: Christofer Dutz <[email protected]> AuthorDate: Fri Aug 22 19:49:34 2025 +0200 chore: Made the update goal also "install" the artifacts locally, or the website generation task will fail. --- tools/release-0-update-generated-code.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release-0-update-generated-code.sh b/tools/release-0-update-generated-code.sh index 532dbd7167..e7f858e789 100755 --- a/tools/release-0-update-generated-code.sh +++ b/tools/release-0-update-generated-code.sh @@ -140,7 +140,7 @@ fi # Run the main build to re-generate the generated code. if ! docker compose -f "$DIRECTORY/tools/docker-compose.yaml" run releaser \ - bash -c "/ws/mvnw -e -P with-c,with-dotnet,with-go,with-java,with-python,enable-all-checks,update-generated-code -Dmaven.repo.local=/ws/out/.repository clean package -DskipTests"; then + bash -c "/ws/mvnw -e -P with-c,with-dotnet,with-go,with-java,with-python,enable-all-checks,update-generated-code -Dmaven.repo.local=/ws/out/.repository clean install -DskipTests"; then echo "❌ Got non-0 exit code from running the code-generation inside docker, aborting." exit 1 else
