Skip to content

Commit 924b8da

Browse files
committed
fix: Fix CI
1 parent bd5d8bb commit 924b8da

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,16 @@ jobs:
6464
6565
- name: Zip folders in /dist
6666
run: |
67+
mkdir -p build
6768
cd dist
6869
for folder in */; do
6970
echo "Zipping folder: $folder"
7071
zip -r "$folder.zip" "$folder" || echo "Failed to zip $folder"
72+
mv "$folder.zip" ../build/ || echo "Failed to move $folder.zip to build"
7173
done
7274
75+
ls -l ../build/
76+
7377
- name: Run Semantic Release
7478
run: |
7579
npx semantic-release

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"path": "@semantic-release/github",
1010
"assets": [
1111
{
12-
"path": "dist/**/*.zip",
12+
"path": "build/*.zip",
1313
"label": "Plugin Dist ZIPs"
1414
}
1515
]

CHANGELOG.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)