You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2023/03/31 08:54:36 UTC

[hop] branch master updated: [DOC] fix dataflow release docs

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b9b12c751 [DOC] fix dataflow release docs
     new 468cc7f938 Merge pull request #2795 from hansva/master
4b9b12c751 is described below

commit 4b9b12c7510e36ed9538ac9138b8d2ec1bcc8aab
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Fri Mar 31 10:54:10 2023 +0200

    [DOC] fix dataflow release docs
---
 .../modules/ROOT/pages/apache-release/promoting-a-release.adoc         | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/docs/hop-dev-manual/modules/ROOT/pages/apache-release/promoting-a-release.adoc b/docs/hop-dev-manual/modules/ROOT/pages/apache-release/promoting-a-release.adoc
index beb85b8ce0..4415cf909f 100644
--- a/docs/hop-dev-manual/modules/ROOT/pages/apache-release/promoting-a-release.adoc
+++ b/docs/hop-dev-manual/modules/ROOT/pages/apache-release/promoting-a-release.adoc
@@ -74,6 +74,9 @@ docker buildx build --platform linux/amd64,linux/arm64 . -f docker/Dockerfile -t
 docker buildx build --platform linux/amd64,linux/arm64 . -f docker/Dockerfile.web -t docker.io/apache/hop-web:X.XX -t docker.io/apache/hop-web:latest --push
 
 # Create and push Dataflow template
+# Create hop-fatjar.jar
+./assemblies/client/target/hop/hop-conf.sh --generate-fat-jar=../hop-fatjar.jar
+# Create image
 docker buildx build --platform linux/amd64,linux/arm64 . -f docker/Dockerfile.dataflowTemplate -t docker.io/apache/hop-dataflow-template:X.XX -t docker.io/apache/hop-dataflow-template:latest --push
 
 ----