Skip to content

Commit

Permalink
Merge pull request #56 from psuzn/main
Browse files Browse the repository at this point in the history
develop -> main
  • Loading branch information
psuzn authored Dec 21, 2023
2 parents 15dee4f + a548161 commit f9f628c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 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
6 changes: 2 additions & 4 deletions CHANGELOG/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Feature
- Support for push notification [android]

# Fix
- Database migration issue on desktop
- F-droid release
- Attempt fix for reproducible build
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Artifacts.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
object Artifact {
const val APP_ID = "me.sujanpoudel.playdeals"
const val APP_NAME = "App Deals"
const val VERSION_CODE = 25
const val VERSION_NAME = "2.1.0"
const val MAJOR_RELEASE = true
const val VERSION_CODE = 30
const val VERSION_NAME = "2.1.5"
const val MAJOR_RELEASE = false

const val ANDROID_COMPILE_SDK = 34
const val ANDROID_TARGET_SDK = 34
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ object Versions {
const val KOTLIN = "1.9.20"
const val AGP = "8.2.0"
const val COMPOSE = "1.5.11"
const val COMPOSE_COMPILER_VERSION = "1.5.6"
const val SETTINGS = "1.0.0"
const val SQLDELIGHT = "2.0.0"
const val FIREBASE_BOM = "32.3.1"
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.3"
kotlinCompilerExtensionVersion = Versions.COMPOSE_COMPILER_VERSION
}

compileOptions {
Expand Down

0 comments on commit f9f628c

Please sign in to comment.