Skip to content

[PR] Resolve Problem occurred in POST request & Enable Notification to be shown as an In-App Notification. #8

[PR] Resolve Problem occurred in POST request & Enable Notification to be shown as an In-App Notification.

[PR] Resolve Problem occurred in POST request & Enable Notification to be shown as an In-App Notification. #8

name: Generate Build Artifact
on:
pull_request:
branches: ["main", "release"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Java JDk
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'adopt'
- name: Change permissions of Wrapper
run: chmod +x ./gradlew
- name: Decode BASEURL
env:
BASEURL: ${{ secrets.BASEURL }}
run: echo BASEURL="$BASEURL" > ./local.properties
- name: Create Necessary File for Building Project
run: cat /home/runner/work/KNUTICE-Android/KNUTICE-Android/app/google-services.json | base64
- name: Putting Data into Created File.
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA > /home/runner/work/KNUTICE-Android/KNUTICE-Android/app/google-services.json
- name: Clean Project
run: ./gradlew clean
- name: Build with Gradle
run: ./gradlew
- name: Generate and upload a Build Artifact
uses: actions/[email protected]
with:
name: KNUTICE_RC.apk
path: app/build/outputs/apk/debug/app-debug.apk