Build single extension #113
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: Build single extension | |
on: | |
workflow_dispatch: | |
inputs: | |
lang: | |
description: Extension language (en, ar, es, pt...) | |
required: true | |
extension: | |
description: Target extension name | |
required: true | |
git-repo: | |
description: Git repo (Optional, defaults to <your name>/aniyomi-extensions | |
default: '' | |
required: false | |
git-ref: | |
description: Git Ref (Optional, defaults to master) | |
default: 'master' | |
required: false | |
env: | |
EXTPATH: ${{ github.event.inputs.lang }}/${{ github.event.inputs.extension }} | |
EXTSLUG: ${{ github.event.inputs.lang }}:${{ github.event.inputs.extension }} | |
REPO: ${{ github.event.inputs.git-repo }} | |
jobs: | |
build-extension: | |
name: Build a single extension | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check inputs | |
run: | | |
set -e | |
if [[ -z "${{ env.REPO }}" ]]; then | |
echo "REPO=${{ github.repository_owner }}/aniyomi-extensions" >> $GITHUB_ENV | |
fi | |
- name: Clone Repository (Latest) | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ env.REPO }} | |
fetch-depth: 0 | |
ref: ${{ github.event.inputs.git-ref }} | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: zulu | |
- name: Build APK | |
env: | |
CI: false | |
run: ./gradlew -p src ${{ env.EXTSLUG }}:assembleDebug | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{github.event.inputs.lang}}-${{ github.event.inputs.extension }} | |
path: "src/${{ env.EXTPATH }}/build/outputs/apk/debug/*.apk" | |
retention-days: 1 |