We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a827911 commit 4f7d3fbCopy full SHA for 4f7d3fb
1 file changed
.github/workflows/workflow.yml
@@ -227,7 +227,11 @@ jobs:
227
sudo apt-get install rename
228
mv boundingboxeditor-installer-*/* .
229
find "$PWD"/* -maxdepth 0 -type f -name "BoundingBoxEditor*" -exec basename {} ";" | rename -f 'y/A-Z/a-z/'
230
- find "$PWD"/* -maxdepth 0 -type d -name "boundingboxeditor-portable-*" -exec zip -r {}.zip {} ";"
+ for image_dir in $(find "$PWD"/* -maxdepth 0 -type d -name "boundingboxeditor-portable-*")
231
+ do
232
+ cd $image_dir
233
+ zip -r $image_dir *
234
+ done
235
- name: Release to github
236
uses: softprops/action-gh-release@v1
237
env:
0 commit comments