FoldCraftLauncher/.github/workflows/main.yml

85 lines
2.1 KiB
YAML

name: Android CI
on:
pull_request:
branches-ignore:
- ''
push:
tags:
- '*'
branches-ignore:
- ''
workflow_dispatch:
jobs:
FCLTeamBuild:
if: github.repository_owner == 'FCL-Team' && !startsWith(github.ref, 'refs/pull/')
strategy:
matrix:
arch: [ "all", "arm", "arm64", "x86", "x86_64" ]
fail-fast: false
env:
FCL_KEYSTORE_PASSWORD: ${{ secrets.FCL_KEYSTORE_PASSWORD }}
CURSE_API_KEY: ${{ secrets.CURSE_API_KEY }}
OAUTH_API_KEY: ${{ secrets.OAUTH_API_KEY }}
name: Build for ${{matrix.arch}}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build ${{matrix.arch}} .apk
run: |
chmod +x gradlew
./gradlew assemblerelease -Darch=${{matrix.arch}}
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
with:
token: "${{ secrets.TOKEN }}"
files: |
FCL/build/outputs/apk/release/*.apk
- name: Upload apk
if: startsWith(github.ref, 'refs/heads/')
uses: actions/upload-artifact@v4
with:
name: app-${{matrix.arch}}
path: FCL/build/outputs/apk/release/*
# retention-days: 1
#only for fork
DebugBuild:
if: github.repository_owner != 'FCL-Team' || startsWith(github.ref, 'refs/pull/')
name: Build Debug
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build debug apk
run: |
chmod +x gradlew
./gradlew assemblefordebug -Darch=all
- name: Upload debug apk
uses: actions/upload-artifact@v4
with:
name: app-debug-all
path: FCL/build/outputs/apk/fordebug/*