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 23ff6199 fix workflow v27
23ff6199 is described below

commit 23ff6199b75c2755930a8d1ecebc0dbc48beeaf8
Author: mfordjody <[email protected]>
AuthorDate: Sat May 31 23:27:41 2025 +0800

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

diff --git a/.github/workflows/dubboctl-release.yaml 
b/.github/workflows/dubboctl-release.yaml
index 356f63c0..a56db9c8 100644
--- a/.github/workflows/dubboctl-release.yaml
+++ b/.github/workflows/dubboctl-release.yaml
@@ -86,15 +86,14 @@ jobs:
 
       - name: Package files
         id: package
-        shell: bash
         run: |
           VERSION=${GITHUB_REF#refs/tags/}
           FILENAME=dubboctl-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}
           if [ "${{ matrix.goos }}" = "windows" ]; then
-            zip -j ${FILENAME}.zip build/*
+            zip -j build/${FILENAME}.zip build/*
             echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT
           else
-            tar -czvf ${FILENAME}.tar.gz -C build .
+            tar --warning=no-file-changed -czvf build/${FILENAME}.tar.gz -C 
build .
             echo "name=${FILENAME}.tar.gz" >> $GITHUB_OUTPUT
           fi
 

Reply via email to