Skip to content

Commit db4e009

Browse files
committed
chore: fix issue with plugin existence
1 parent baebaa9 commit db4e009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,12 @@ jobs:
365365
366366
- name: Ensure Plugin Files Exist
367367
run: |
368-
if [ ! -f plugin/deploy/*.plg ]; then
368+
if [ ! -f ./deploy/*.plg ]; then
369369
echo "Error: .plg file not found in plugin/deploy/"
370370
exit 1
371371
fi
372372
373-
if [ ! -f plugin/deploy/*.tgz ]; then
373+
if [ ! -f ./deploy/*.tgz ]; then
374374
echo "Error: .tgz file not found in plugin/deploy/"
375375
exit 1
376376
fi

0 commit comments

Comments
 (0)