Skip to content

Commit 41f2b83

Browse files
committed
Make installers lowercase.
1 parent 6ff0b14 commit 41f2b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
run: |
226226
sudo apt-get install rename
227227
mv boundingboxeditor-installer-*/* .
228-
find "$PWD"/* -maxdepth 0 -type f -name "BoundingBoxEditor*" -exec rename -f 'y/A-Z/a-z/' {} ";"
228+
find "$PWD"/* -maxdepth 0 -type f -name "BoundingBoxEditor*" -exec basename {} ";" | rename -f 'y/A-Z/a-z/'
229229
find "$PWD"/* -maxdepth 0 -type d -name "boundingboxeditor-portable-*" -exec zip -r {}.zip {} ";"
230230
- name: Release to github
231231
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)