Skip to content

chore: bump version to 1.3.1 #54

chore: bump version to 1.3.1

chore: bump version to 1.3.1 #54

Workflow file for this run

name: Android CI
on:
push:
paths-ignore:
- '**.md'
- '**.txt'
- '.github/**'
- '.idea/**'
- '!.github/workflows/**'
pull_request:
workflow_dispatch:
jobs:
build:
name: Build debug APK
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build debug APK
uses: gradle/gradle-build-action@v2
with:
arguments: assembleDebug
- name: Upload artifact
uses: actions/upload-artifact@v3
if: ${{ !github.head_ref }}
with:
name: apk-debug
path: app/build/outputs/apk/debug/app-debug.apk