Simplify and fix color of star icon #12
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: CI Build | |
on: | |
push: | |
branches: [edge] | |
tags: ["*"] | |
pull_request: | |
branches: [edge] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- uses: android-actions/setup-android@v3 | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: sh gradlew --no-daemon assembleRelease | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: DSub2000 APK | |
path: app/build/outputs/apk/floss/release/*-release.apk | |
compression-level: 0 |