Skip to content

Commit d6088cf

Browse files
committed
fix(pr-ci): don't add frontend dir into plugin dist as it is not needed
1 parent 9241c43 commit d6088cf

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

.github/workflows/pr.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,6 @@ jobs:
5959
cp -r "backend" ./dist/backend 2>/dev/null || echo "::warning::backend directory not found, skipping."
6060
fi
6161
62-
FRONTEND_DIR=$(jq -r '.frontend' plugin.json)
63-
if [ "$FRONTEND_DIR" != "null" ]; then
64-
cp -r "$FRONTEND_DIR" ./dist/"$FRONTEND_DIR"
65-
else
66-
cp -r "frontend" ./dist/frontend 2>/dev/null || echo "::warning::frontend directory not found, skipping."
67-
fi
68-
6962
include=$(jq -r '.include // [] | .[]' plugin.json)
7063
7164
if [ -z "$include" ]; then

0 commit comments

Comments
 (0)