mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-23 05:46:09 +03:00
11c4e19e0c
* Refactor: refactor project structure * Chore: remove apply * Chore: update clash core * Fix: fix versionName & versionCode patch * Chore: update golang plugin * Fix: fix workflow build
40 lines
885 B
YAML
40 lines
885 B
YAML
name: Build Unsigned
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '.github/**'
|
|
- '.idea/**'
|
|
- '.gitignore'
|
|
- '.gitmodules'
|
|
- '**.md'
|
|
- 'LICENSE'
|
|
- 'NOTICE'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '.github/**'
|
|
- '.idea/**'
|
|
- '.gitignore'
|
|
- '.gitmodules'
|
|
- '**.md'
|
|
- 'LICENSE'
|
|
- 'NOTICE'
|
|
jobs:
|
|
BuildUnsigned:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
- name: Setup Android SDK
|
|
uses: android-actions/setup-android@v2
|
|
- name: Build
|
|
run: ./gradlew --no-daemon app:assembleFossRelease |