Skip to content

Commit fba0434

Browse files
committed
Update ci.yml
1 parent 1620c34 commit fba0434

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,22 @@ jobs:
117117
118118
cp -r ".millennium" dist/.millennium 2>/dev/null || echo "::error::.millennium directory not found, it is required to run the plugin."
119119
cp "plugin.json" dist/plugin.json 2>/dev/null || { echo "::error::plugin.json was not found. It is required for plugins to have."; exit 1; }
120-
cp "requirements.txt" dist/requirements.txt 2>/dev/null || echo "::info::requirements.txt not found, skipping."
121-
cp "README.md" dist/README.md 2>/dev/null || echo "::info::README.md not found, skipping."
122-
cp "README" dist/README 2>/dev/null || echo "::info::README not found, skipping."
120+
cp "requirements.txt" dist/requirements.txt 2>/dev/null || echo "::debug::requirements.txt not found, skipping."
121+
cp "README.md" dist/README.md 2>/dev/null || echo "::debug::README.md not found, skipping."
122+
cp "README" dist/README 2>/dev/null || echo "::debug::README not found, skipping."
123123
124124
BACKEND_DIR=$(jq -r '.backend' plugin.json)
125125
if [ "$BACKEND_DIR" != "null" ]; then
126126
cp -r "$BACKEND_DIR" ./dist/"$BACKEND_DIR"
127127
else
128-
cp -r "backend" ./dist/backend 2>/dev/null || echo "::info::backend directory not found, skipping."
128+
cp -r "backend" ./dist/backend 2>/dev/null || echo "::debug::backend directory not found, skipping."
129129
fi
130130
131131
FRONTEND_DIR=$(jq -r '.frontend' plugin.json)
132132
if [ "$FRONTEND_DIR" != "null" ]; then
133133
cp -r "$FRONTEND_DIR" ./dist/"$FRONTEND_DIR"
134134
else
135-
cp -r "frontend" ./dist/frontend 2>/dev/null || echo "::info::frontend directory not found, skipping."
135+
cp -r "frontend" ./dist/frontend 2>/dev/null || echo "::debug::frontend directory not found, skipping."
136136
fi
137137
138138
include=$(jq -r '.include // [] | .[]' plugin.json)

0 commit comments

Comments
 (0)