mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-23 05:46:09 +03:00
8b91b2eeb1
* Add .editorconfig * Add .gitattributes * Remove indent_style * Remove .editorconfig
42 lines
874 B
YAML
42 lines
874 B
YAML
name: Build Unsigned
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '.idea/**'
|
|
- '.gitattributes'
|
|
- '.gitignore'
|
|
- '.gitmodules'
|
|
- '**.md'
|
|
- 'LICENSE'
|
|
- 'NOTICE'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '.idea/**'
|
|
- '.gitattributes'
|
|
- '.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@v2
|
|
with:
|
|
distribution: 'adopt'
|
|
java-version: 11
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
- name: Build
|
|
run: ./gradlew --no-daemon app:assembleFossRelease
|