ci: confirm static directory placement in artifact package

Ensure the static directory is copied as a sibling to the rustfs binary
in the artifact package, maintaining the proper directory structure
for the application to locate its resources.
This commit is contained in:
houseme
2025-03-02 01:14:10 +08:00
parent f113f8afea
commit 34dc49c2f5

View File

@@ -60,7 +60,7 @@ jobs:
# Create package
mkdir -p ${ARTIFACT_NAME}
cp "$bin_path" ${ARTIFACT_NAME}/rustfs
cp -r static/* ${ARTIFACT_NAME}/
cp -r static ${ARTIFACT_NAME}/
zip -r ${ARTIFACT_NAME}.zip ${ARTIFACT_NAME}
ls -la