Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Oct 30, 2024
1 parent 7069e60 commit e0900b9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
32 changes: 21 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,24 @@ jobs:
- name: Make Gradlew Executable
run: chmod +x ./gradlew

# - name: Lint
# run: ./gradlew lint

# - name: Detekt
# run: ./gradlew detekt

# - name: Unit Tests
# run: ./gradlew testDebugUnitTest

- name: Build
run: ./gradlew compileDebugKotlin
# - name: Build
# run: ./gradlew compileDebugKotlin

- name: Build Debug Artifacts
run: ./gradlew app:assembleDebug

- name: Upload Artifacts to Outputs
uses: actions/upload-artifact@v2
with:
path: |
app/build/outputs/apk
- name: Telegram Message
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO_ID }}
token: ${{ secrets.TELEGRAM_TOKEN }}
disable_notification: false
disable_web_page_preview: true
document: app/build/outputs/apk/**/*.apk
# message_file: ./releaseNotes.txt
1 change: 1 addition & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@ dependencies {
ksp(libs.kotlin.inject.compiler.ksp)
api(libs.koin.android)
api(libs.koin.androidx.compose)
api(libs.koin.androidx.workmanager)
api(libs.koin.core)
testApi(libs.koin.test)
testApi(libs.koin.test.junit4)
Expand Down

0 comments on commit e0900b9

Please sign in to comment.