You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wa...@apache.org on 2021/11/01 03:54:47 UTC

[skywalking-java] branch fix-doc created (now 3e67873)

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

wankai pushed a change to branch fix-doc
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git.


      at 3e67873  Fix release doc about docker images

This branch includes the following new commits:

     new 3e67873  Fix release doc about docker images

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[skywalking-java] 01/01: Fix release doc about docker images

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wankai pushed a commit to branch fix-doc
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git

commit 3e678732b82b17a9b9cba8011d5e4f0a9d7d7dff
Author: wankai123 <wa...@foxmail.com>
AuthorDate: Mon Nov 1 11:54:33 2021 +0800

    Fix release doc about docker images
---
 docs/en/contribution/release-java-agent.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/en/contribution/release-java-agent.md b/docs/en/contribution/release-java-agent.md
index 0ae6240..2d14953 100644
--- a/docs/en/contribution/release-java-agent.md
+++ b/docs/en/contribution/release-java-agent.md
@@ -269,12 +269,13 @@ export SW_VERSION=x.y.z
 git clone --depth 1 --branch v$SW_VERSION https://github.com/apache/skywalking-java.git
 cd skywalking-java
 
-svn co https://dist.apache.org/repos/dist/release/skywalking/java-agent/$SW_VERSION skywalking-agent # (1)
+curl -O https://dist.apache.org/repos/dist/release/skywalking/java-agent/$SW_VERSION/apache-skywalking-java-agent-$SW_VERSION.tgz
+tar -xzvf apache-skywalking-java-agent-$SW_VERSION.tgz
 
 export NAME=skywalking-java-agent
 export HUB=apache
 export TAG=$SW_VERSION
-export DIST=<the binary package name inside (1), e.g. apache-skywalking-java-agent-8.8.0.tgz>
+
 make docker.push.java8 docker.push.java11
 ```