Skip to content

Don't Load Avatars On Invisible Comments #41

Don't Load Avatars On Invisible Comments

Don't Load Avatars On Invisible Comments #41

Workflow file for this run

name: Android CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
RELEASE_KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
submodules: 'recursive'
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Access Release Keystore
if: ${{ env.RELEASE_KEYSTORE != '' }}
run: |
echo "${RELEASE_KEYSTORE}" | base64 -d > keystore.jks
- name: Build APK
run: |
chmod +x gradlew
./gradlew build bundle
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: apk
path: |
app/build/outputs/apk
app/build/outputs/bundle
app/build/outputs/mapping