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 a6c7a479 Update ci workflow v10
a6c7a479 is described below

commit a6c7a4790808e208caf2348bb98a62e7d53e5a00
Author: mfordjody <[email protected]>
AuthorDate: Fri Jul 4 12:35:16 2025 +0800

    Update ci workflow v10
---
 .github/workflows/release.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index f5b22134..99f752b3 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -129,10 +129,10 @@ jobs:
       - name: dubboctl Package files
         id: package_ctl
         run: |
-          mkdir dubboctl-${VERSION}
-          cp build/dubboctl/* dubboctl-${VERSION}
           VERSION=${GITHUB_REF#refs/tags/}
           FILENAME=dubboctl-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}
+          mkdir dubboctl-${VERSION}
+          cp build/dubboctl/* dubboctl-${VERSION}
           if [ "${{ matrix.goos }}" = "windows" ]; then
             zip -j ${FILENAME}.zip dubboctl-${VERSION}
             echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT
@@ -144,10 +144,10 @@ jobs:
       - name: dubbo-cp Package files
         id: package_cp
         run: |
-          mkdir dubbo-cp-${VERSION}
-          cp build/dubbo-cp/* dubbo-cp-${VERSION}
           VERSION=${GITHUB_REF#refs/tags/}
           FILENAME=dubbo-cp-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}
+          mkdir dubbo-cp-${VERSION}
+          cp build/dubbo-cp/* dubbo-cp-${VERSION}
           if [ "${{ matrix.goos }}" = "windows" ]; then
             zip -j ${FILENAME}.zip dubbo-cp-${VERSION}
             echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT

Reply via email to