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 91341c68 Update ci workflow v1 91341c68 is described below commit 91341c688aa2c4b2d8cb13f796acd23e0b6130d8 Author: mfordjody <11638...@qq.com> AuthorDate: Fri Jul 4 09:36:53 2025 +0800 Update ci workflow v1 --- .github/workflows/release.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 06cfa3c5..204dcae4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: dubboctl Release +name: Dubbo Release on: push: @@ -101,8 +101,8 @@ jobs: mkdir -p build/ make build-dubboctl GOOS=${GOOS} GOARCH=${GOARCH} GIT_VERSION=${GIT_VERSION} cp README.md LICENSE build/ - mv bin/dubboctl* build/ - ls -ln build/ + mv bin/dubboctl* build/cli/ + ls -ln build/cli/ - name: Dubbo-CP Build binary env: @@ -112,19 +112,19 @@ jobs: run: | mkdir -p build/ make build-dubbo-cp GOOS=${GOOS} GOARCH=${GOARCH} GIT_VERSION=${GIT_VERSION} - cp README.md LICENSE build/ - mv bin/dubbo-cp* build/ - ls -ln build/ + cp README.md LICENSE build/cp/ + mv bin/dubbo-cp* build/cp/ + ls -ln build/cp/ - name: Dubboctl Rename windows if: matrix.goos == 'windows' run: | - mv build/dubboctl build/dubboctl.exe + mv build/cli/dubboctl build/cli/dubboctl.exe - name: Dubbo-CP Rename windows if: matrix.goos == 'windows' run: | - mv build/dubbo-cp build/dubbo-cp.exe + mv build/cp/dubbo-cp build/cp/dubbo-cp.exe - name: dubboctl Package files id: package_ctl