Skip to content

Commit

Permalink
Update archive names
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharee committed Dec 8, 2023
1 parent 954afd5 commit bcfc40f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
env:
BUILD_TOOLS_VERSION: "30.0.3"
- name: Rename APK
run: mv ${{ steps.sign_apk.outputs.signedReleaseFile }} ${{ github.workspace }}/android/build/outputs/apk/release/Bifrost_Android.apk
run: mv ${{ steps.sign_apk.outputs.signedReleaseFile }} ${{ github.workspace }}/android/build/outputs/apk/release/Bifrost_Android_${{ steps.release.outputs.tag_name }}.apk
- name: Upload APK
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down
4 changes: 4 additions & 0 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName

plugins {
alias(libs.plugins.compose)
alias(libs.plugins.android.application)
Expand Down Expand Up @@ -35,6 +37,8 @@ android {

this.versionCode = versionCode
this.versionName = versionName

archivesName.set("Bifrost_$versionName")
}

namespace = packageName
Expand Down
2 changes: 1 addition & 1 deletion conveyor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ app {
// A global identifier for the app.
rdns-name = "tk.zwander.samloaderkotlin"

fsname = "tk-zwander-samloaderkotlin"
fsname = "Bifrost"

icons = "icon_rounded.svg"
windows.icons = "icon.svg"
Expand Down

0 comments on commit bcfc40f

Please sign in to comment.