Edit button color attr of dialog #106
Workflow file for this run
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: AndroidBuild | |
on: | |
pull_request: | |
branches: [ develop ] | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on : ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
java-version: '19' | |
distribution: 'adopt' | |
gradle-version: 8.2 | |
- name: Access DEBUG_API_KEY from Secrets | |
env: | |
DEBUG_API_KEY: ${{ secrets.DEBUG_API_KEY }} | |
run: echo DEBUG_API_KEY=\"DEBUG_API_KEY\" > $GITHUB_WORKSPACE/debugapikey.properties | |
- name: Access RELEASE_API_KEY from Secrets | |
env: | |
RELEASE_API_KEY: ${{ secrets.RELEASE_API_KEY }} | |
run: echo RELEASE_API_KEY=\"RELEASE_API_KEY\" > $GITHUB_WORKSPACE/releaseapikey.properties | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: WalliesCompose.apk | |
path: app/build/outputs/apk/debug/app-debug.apk |