Skip to content

Commit

Permalink
[release] v2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
psuzn committed Dec 12, 2023
1 parent f16beda commit 2928847
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Artifacts.kt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2928847

Please sign in to comment.