Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 45 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# .github
name: Build Ar Backup APK

*Community health files for the [@GitHub](https://github.com/github) organization*
on:
workflow_dispatch:

For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization).
permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 25

steps:
- name: Download repository files
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'

- name: Set up Android
uses: android-actions/setup-android@v3

- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: '8.9'

- name: Install Android build tools
run: sdkmanager "platforms;android-35" "build-tools;35.0.0"

- name: Unpack your project
run: unzip Ar-Backup-app-Android-Source.zip -d source

- name: Build test APK
working-directory: source/Ar-Backup-app
run: gradle --no-daemon :app:assembleDebug

- name: Save APK for download
uses: actions/upload-artifact@v4
with:
name: Ar-Backup-APK
path: source/Ar-Backup-app/app/build/outputs/apk/debug/app-debug.apk
if-no-files-found: error