We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8294c88 commit 2fbbb44Copy full SHA for 2fbbb44
.github/workflows/ci.yml
@@ -70,9 +70,12 @@ jobs:
70
71
out="${folder%/}"
72
73
+ # get theme name
74
+ theme_name=$(jq -r '.name' "$folder"plugin.json)
75
+
76
echo "Zipping folder: $folder"
77
zip -r "$out.zip" "$folder" || echo "Failed to zip $folder"
- mv "$out.zip" ../build/$out.zip || echo "Failed to move $folder.zip to build"
78
+ mv "$out.zip" ../build/$theme_name.zip || echo "Failed to move $folder.zip to build"
79
done
80
81
- name: List built plugins
0 commit comments