FoldCraftLauncher/.github/workflows/main.yml

38 lines
713 B
YAML
Raw Normal View History

2024-01-07 10:10:44 +00:00
name: Android CI
on:
pull_request:
branches-ignore:
- ''
push:
branches-ignore:
- ''
workflow_dispatch:
jobs:
build:
2024-01-14 01:22:55 +00:00
env:
FCL_KEYSTORE_PASSWORD: ${{ secrets.FCL_KEYSTORE_PASSWORD }}
2024-01-07 10:10:44 +00:00
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build debug .apk
run: |
chmod +x gradlew
2024-01-14 01:22:55 +00:00
./gradlew assembleautobuild
2024-01-07 10:10:44 +00:00
- name : upload apk
uses: actions/upload-artifact@v3
with:
name: app-release
2024-01-14 01:22:55 +00:00
path: FCL/build/outputs/apk/autobuild/*
2024-01-07 10:10:44 +00:00
# retention-days: 1