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 b1377799 fix workflow v23
b1377799 is described below
commit b13777996a1a3e29dcfc6260e4ec07ff9ac03273
Author: mfordjody <[email protected]>
AuthorDate: Sat May 31 23:04:04 2025 +0800
fix workflow v23
---
.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 dc47e686..bbabc7fa 100644
--- a/.github/workflows/dubboctl-release.yaml
+++ b/.github/workflows/dubboctl-release.yaml
@@ -90,10 +90,10 @@ jobs:
VERSION=${GITHUB_REF#refs/tags/}
FILENAME=dubboctl-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}
if [ "${{ matrix.goos }}" = "windows" ]; then
- zip -j build/${FILENAME}.zip build/*
+ zip -j ${FILENAME}.zip build/*
echo "name=${FILENAME}.zip" >> $GITHUB_OUTPUT
else
- tar --warning=no-file-changed -czvf build/${FILENAME}.tar.gz -C
build .
+ tar -czvf ${FILENAME}.tar.gz -C build .
echo "name=${FILENAME}.tar.gz" >> $GITHUB_OUTPUT
fi