chore: Comment out debug log for active sessions check in Routines.kt #67
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Android CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/[email protected] | |
| - name: Set up JDK 21 | |
| uses: actions/[email protected] | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Give permission to executable | |
| run: chmod +x gradlew | |
| - name: Setup Android SDK | |
| uses: android-actions/[email protected] | |
| - name: Setup Gradle | |
| uses: gradle/actions/[email protected] | |
| - name: Build with gradle | |
| run: ./gradlew clean assemble | |
| - name: Upload debug apks | |
| uses: actions/[email protected] | |
| with: | |
| name: app-debug | |
| path: Reef/build/outputs/apk/debug | |
| - name: Upload release apks | |
| uses: actions/[email protected] | |
| with: | |
| name: app-release | |
| path: Reef/build/outputs/apk/release |