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 7f3e419d fix workflow v28
7f3e419d is described below
commit 7f3e419d721451b6738b074ae81d0662ebf821dd
Author: mfordjody <[email protected]>
AuthorDate: Sat May 31 23:36:18 2025 +0800
fix workflow v28
---
.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 a56db9c8..7470aa9b 100644
--- a/.github/workflows/dubboctl-release.yaml
+++ b/.github/workflows/dubboctl-release.yaml
@@ -93,7 +93,7 @@ jobs:
zip -j build/${FILENAME}.zip build/*
echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT
else
- tar --warning=no-file-changed -czvf build/${FILENAME}.tar.gz -C
build .
+ tar -czvf build/${FILENAME}.tar.gz -C build .
echo "name=${FILENAME}.tar.gz" >> $GITHUB_OUTPUT
fi
@@ -103,6 +103,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
- asset_path: ./build/${{ steps.package.outputs.name }}
+ asset_path: ${{ steps.package.outputs.name }}
asset_name: ${{ steps.package.outputs.name }}
asset_content_type: application/octet-stream