Resizing blur + blur in draw mode #144
This file contains 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: Build the app | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: Development | |
env: | |
ACRA_LOGIN: ${{ secrets.ACRARIUM_BASIC_AUTH_LOGIN }} | |
ACRA_PASS: ${{ secrets.ACRARIUM_BASIC_AUTH_PASSWORD }} | |
ACRA_URI: ${{ secrets.ACRARIUM_URI }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Validate Gradle wrapper | |
uses: gradle/[email protected] | |
- name: Build Release APK | |
run: ./gradlew assembleRelease | |
- name: Upload Release APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ark-retouch-release | |
path: ./app/build/outputs/apk/release/*.apk | |
lint: | |
needs: build | |
environment: Development | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Run linter | |
run: ./gradlew lint | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: lint-results | |
path: ./app/build/reports/*.html | |
ktlint: | |
needs: build | |
environment: Development | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Kotlin linter | |
run: ./gradlew ktlintCheck | |