Delete versions/RDK-1/files.zip #56
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: Android CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'dev' | |
pull_request: | |
branches: | |
- 'dev' | |
jobs: | |
SDK-release-library: | |
name: Build SDK Release APK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Build with Gradle | |
id: gradle_build_release | |
run: ./gradlew assembleRelease | |
- name: Upload robok-sdk/build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: robok-sdk/build/ | |