Skip to content

chore: update translations with Fink 🐦 #17

chore: update translations with Fink 🐦

chore: update translations with Fink 🐦 #17

Workflow file for this run

name: Android CI
on:
push:
tags:
- 'v*'
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -x lint --warning-mode all
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Package
path: build/libs
- name: Upload Lint Report
uses: actions/upload-artifact@v4
with:
name: lint-report
path: app/build/reports/lint-results-debug.html