Skip to content

Commit 25066cf

Browse files
authored
Merge pull request #392 from ma10/fix-release-wf-20250826_4
Fix file copy issue of create-release in the release workflow
2 parents f02b76a + 2dd9b5e commit 25066cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
echo "Processing artifacts..."
215215
ARTIFACT_DIR="${GITHUB_WORKSPACE}/artifacts/release-${TAG}"
216216
if [ -d "$ARTIFACT_DIR" ]; then
217-
cp -r "${ARTIFACT_DIR}/*" "${ASSET_DIR}/"
217+
cp -r ${ARTIFACT_DIR}/* ${ASSET_DIR}/
218218
219219
# Remove metadata files from the asset
220220
rm -f "${ASSET_DIR}/.deploy_path" 2>/dev/null || true

0 commit comments

Comments
 (0)