diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index fde63f1..a9f305e 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -128,14 +128,14 @@ jobs: TMP_BUNDLE=$(ls androidApp/build/outputs/bundle/release/*.aab) RELEASE_BUNDLE="${TMP_BUNDLE/-release/""}" mv $TMP_BUNDLE $RELEASE_BUNDLE - mv $RELEASE_BUNDLE $TMP_BUNDLE + mv $RELEASE_BUNDLE $ARTIFACTS echo "artifacts=$ARTIFACTS" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: android-bundles - path: ${{ steps.collect_artifacts.artifacts }} + path: ${{ steps.collect_artifacts.outputs.artifacts }} desktop_release: name: Build desktop apps diff --git a/buildSrc/src/main/kotlin/Artifacts.kt b/buildSrc/src/main/kotlin/Artifacts.kt index 8563a79..e1b62dc 100644 --- a/buildSrc/src/main/kotlin/Artifacts.kt +++ b/buildSrc/src/main/kotlin/Artifacts.kt @@ -1,8 +1,8 @@ object Artifact { const val APP_ID = "me.sujanpoudel.playdeals" const val APP_NAME = "App Deals" - const val VERSION_CODE = 26 - const val VERSION_NAME = "2.1.1" + const val VERSION_CODE = 29 + const val VERSION_NAME = "2.1.4" const val MAJOR_RELEASE = false const val ANDROID_COMPILE_SDK = 34