Skip to content

Commit

Permalink
Another naming fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 committed Mar 31, 2024
1 parent 4e4837c commit e023e7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
uses: pozetroninc/[email protected]
with:
token: ${{ github.token }}
exclude_types: "prerelease, draft"
excludes: "prerelease, draft"
owner: Suwayomi
repo: Suwayomi-JUI-preview

Expand Down
4 changes: 2 additions & 2 deletions scripts/NamingFix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ -f "$msi" ]; then
fi
fi

dmg_x64="$(find ./runner-package-osx-x64/binaries/\(main-release\|main\)/dmg/ -iname '*.dmg' 2>/dev/null)"
dmg_x64="$(find ./runner-package-osx-x64/ -iname '*.dmg' 2>/dev/null)"
if [ -f "$dmg_x64" ]; then
dir="$(dirname "$dmg_x64")"
version=$(tmp="${dmg_x64%.*}" && echo "${tmp##*-}")
Expand All @@ -26,7 +26,7 @@ if [ -f "$dmg_x64" ]; then
fi
fi

dmg_arm64="$(find ./runner-package-osx-arm64/binaries/\(main-release\|main\)/dmg/ -iname '*.dmg' 2>/dev/null)"
dmg_arm64="$(find ./runner-package-osx-arm64/ -iname '*.dmg' 2>/dev/null)"
if [ -f "$dmg_arm64" ]; then
dir="$(dirname "$dmg_arm64")"
version=$(tmp="${dmg_arm64%.*}" && echo "${tmp##*-}")
Expand Down

0 comments on commit e023e7e

Please sign in to comment.