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 05f65fe2 fix workflow v26
05f65fe2 is described below
commit 05f65fe2961f362e98706ce4d941a4eeb23d0b01
Author: mfordjody <[email protected]>
AuthorDate: Sat May 31 23:24:01 2025 +0800
fix workflow v26
---
.github/workflows/dubboctl-release.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/dubboctl-release.yaml
b/.github/workflows/dubboctl-release.yaml
index 50d39dad..356f63c0 100644
--- a/.github/workflows/dubboctl-release.yaml
+++ b/.github/workflows/dubboctl-release.yaml
@@ -82,6 +82,7 @@ jobs:
make build-dubboctl GOOS=${GOOS} GOARCH=${GOARCH}
GIT_VERSION=${GIT_VERSION}
cp README.md LICENSE build/
mv bin/dubboctl* build/
+ ls -ln build/
- name: Package files
id: package
@@ -102,8 +103,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
-# upload_url: ${{ github.event.release.upload_url }}
- upload_url: ${{ steps.create_release.outputs.upload_url }} # ✅ 关键点
- asset_path: ${{ github.workspace }}/build/${{
steps.package.outputs.name }}
+ upload_url: ${{ needs.create_release.outputs.upload_url }}
+ asset_path: ./build/${{ steps.package.outputs.name }}
asset_name: ${{ steps.package.outputs.name }}
asset_content_type: application/octet-stream