Skip to content

Commit 40890e0

Browse files
committed
Fix cli release names
1 parent c4603ae commit 40890e0

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/android.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,11 @@ jobs:
437437
run: |
438438
VERSION="${GITHUB_REF_NAME#v}"
439439
mv android-release-signed.apk "LinuxCommandLibrary-${VERSION}-android.apk"
440+
mv cli-macos-arm64.zip "LinuxCommandLibrary-${VERSION}-cli-macos-arm64.zip"
441+
mv cli-macos-x64.zip "LinuxCommandLibrary-${VERSION}-cli-macos-x64.zip"
442+
mv cli-linux-x64.zip "LinuxCommandLibrary-${VERSION}-cli-linux-x64.zip"
443+
mv cli-linux-arm64.zip "LinuxCommandLibrary-${VERSION}-cli-linux-arm64.zip"
444+
mv cli-windows-x64.zip "LinuxCommandLibrary-${VERSION}-cli-windows-x64.zip"
440445
mv *.dmg "LinuxCommandLibrary-${VERSION}-macos.dmg"
441446
mv *.msi "LinuxCommandLibrary-${VERSION}-windows.msi"
442447
mv *.deb "LinuxCommandLibrary-${VERSION}-linux.deb"
@@ -450,4 +455,3 @@ jobs:
450455
body_path: changelog.txt
451456
files: |
452457
LinuxCommandLibrary-*
453-
cli-*.zip
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.linuxcommandlibrary.shared
22

33
object Version {
4-
const val APP_VERSION = "3.6.0"
4+
const val APP_VERSION = "3.6.1"
55
}

iosApp/iosApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.5.16</string>
20+
<string>3.6.1</string>
2121
<key>CFBundleVersion</key>
2222
<string>1</string>
2323
<key>LSRequiresIPhoneOS</key>

0 commit comments

Comments
 (0)