Skip to content

Commit 78d001a

Browse files
authored
Merge pull request #21 from NHLOCAL/dev
Dev
2 parents 14a541a + d7f6492 commit 78d001a

File tree

8 files changed

+1203
-197
lines changed

8 files changed

+1203
-197
lines changed

.github/workflows/publish-apk.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ jobs:
5050
shell: bash
5151
run: |
5252
VERSION=${GITHUB_REF#refs/tags/v}
53-
FILENAME="Singles-Sorter-$VERSION_CLEAN.apk"
53+
FILENAME="Singles-Sorter-${VERSION}.apk"
5454
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
55-
echo "VERSION_CLEAN=$VERSION_CLEAN" >> $GITHUB_OUTPUT
5655
echo "FILENAME=$FILENAME" >> $GITHUB_OUTPUT
5756
echo "RELEASE_TITLE=מסדר הסינגלים $VERSION" >> $GITHUB_OUTPUT
5857
@@ -70,4 +69,4 @@ jobs:
7069
draft: true
7170
prerelease: true
7271
files: |
73-
build/apk/${{ steps.get_version.outputs.FILENAME }}
72+
build/apk/${{ steps.get_version.outputs.FILENAME }}

.github/workflows/‏‏publish-cli-ai.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ jobs:
4040
$version = "${{ steps.get_version.outputs.VERSION }}"
4141
Move-Item -Path "dist\Singles-Sorter.exe" -Destination "dist\singles-sorter-cli-ai-$version.exe"
4242
43+
- name: Copy models directory
44+
shell: pwsh
45+
run: |
46+
Copy-Item -Path "src\core\models" -Destination "dist\models" -Recurse
47+
48+
- name: Create ZIP Archive
49+
shell: pwsh
50+
run: |
51+
$version = "${{ steps.get_version.outputs.VERSION }}"
52+
Compress-Archive -Path @("dist\singles-sorter-cli-ai-$version.exe", "dist\models") -DestinationPath "dist\singles-sorter-cli-ai-$version.zip"
53+
4354
- name: Create Release
4455
uses: softprops/action-gh-release@v2.0.6
4556
env:
@@ -49,4 +60,4 @@ jobs:
4960
name: ${{ steps.get_version.outputs.RELEASE_TITLE }}
5061
draft: true
5162
prerelease: true
52-
files: ./dist/singles-sorter-cli-ai-${{ steps.get_version.outputs.VERSION }}.exe
63+
files: ./dist/singles-sorter-cli-ai-${{ steps.get_version.outputs.VERSION }}.zip

Singles-Sorter.spec

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "singlesorter"
3-
version = "14.0.0beta"
3+
version = "14.0.0"
44
description = "מסדר הסינגלים"
55
authors = [{ name = "NHLOCAL", email = "nh.local11@gmail.com" }]
66
dependencies = [

src/core/app/tips.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
{
3535
"type": "טיפ",
36-
"content": "כדי למנוע מהתוכנה ליצור תיקיות חדשות עבור אמנים, הפעל את האפשרות **השתמש בתיקיות קיימות בלבד** תחת **אפשרויות מיון**"
36+
"content": "כדי למנוע מהתוכנה ליצור תיקיות חדשות עבור אמנים, הפעל את האפשרות **שימוש בתיקיות קיימות** תחת **אפשרויות מיון**"
3737
},
3838
{
3939
"type": "טיפ",

0 commit comments

Comments
 (0)