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

zhongxjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new c549e55b fix workflow v29
c549e55b is described below

commit c549e55b88dfb326146a602b17b728fe54e7bfe5
Author: mfordjody <[email protected]>
AuthorDate: Sat May 31 23:39:20 2025 +0800

    fix workflow v29
---
 .github/workflows/dubboctl-release.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/dubboctl-release.yaml 
b/.github/workflows/dubboctl-release.yaml
index 7470aa9b..3edfa76e 100644
--- a/.github/workflows/dubboctl-release.yaml
+++ b/.github/workflows/dubboctl-release.yaml
@@ -90,10 +90,10 @@ jobs:
           VERSION=${GITHUB_REF#refs/tags/}
           FILENAME=dubboctl-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}
           if [ "${{ matrix.goos }}" = "windows" ]; then
-            zip -j build/${FILENAME}.zip build/*
+            zip -j ${FILENAME}.zip build/*
             echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT
           else
-            tar -czvf build/${FILENAME}.tar.gz -C build .
+            tar -czvf ${FILENAME}.tar.gz -C build .
             echo "name=${FILENAME}.tar.gz" >> $GITHUB_OUTPUT
           fi
 

Reply via email to