ClashMetaForAndroid/.github/workflows/build-unsigned.yaml
Goooler 8b91b2eeb1
Chore: add .gitattributes (#1191)
* Add .editorconfig

* Add .gitattributes

* Remove indent_style

* Remove .editorconfig
2021-09-13 18:34:34 +08:00

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