Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Add CI (#1)
Browse files Browse the repository at this point in the history
* Create android.yml

* Improve
  • Loading branch information
TymanWasTaken authored May 9, 2022
1 parent 77ef482 commit 014cae8
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Aliucord native

on:
push:
pull_request:
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle

- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew make
unzip -p app/build/AliucordNative.zip classes.dex > app/build/classes.dex
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: AliucordNative
path: app/build/classes.dex

0 comments on commit 014cae8

Please sign in to comment.