forked from recloudstream/cloudstream
try to shave 2min from the build
Signed-off-by: C10udburst <serek.lego@gmail.com>
This commit is contained in:
parent
df093d5e72
commit
8f511a8707
2 changed files with 19 additions and 19 deletions
21
.github/workflows/prerelease.yml
vendored
21
.github/workflows/prerelease.yml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Pre-release
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
concurrency:
|
||||
group: "pre-release"
|
||||
|
@ -11,16 +13,15 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run Gradle command
|
||||
uses: Raul6469/android-gradle-action@2.0.0
|
||||
- name: Set up JDK 8
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
script: assembleDebug
|
||||
# In some cases, you may need to provide
|
||||
# Android licence agreement id
|
||||
# You can find it on your own machine under `$ANDROID_HOME/license`,
|
||||
# and add the file content as a GitHub secret named `$ANDROID_LICENCE`.
|
||||
# android-licence: ${{ secrets.ANDROID_LICENCE }}
|
||||
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Run Gradle
|
||||
run: ./gradlew assembleDebug
|
||||
- name: Create pre-release
|
||||
uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
|
|
17
.github/workflows/pull_request.yml
vendored
17
.github/workflows/pull_request.yml
vendored
|
@ -7,16 +7,15 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run Gradle command
|
||||
uses: Raul6469/android-gradle-action@2.0.0
|
||||
- name: Set up JDK 8
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
script: assembleDebug
|
||||
# In some cases, you may need to provide
|
||||
# Android licence agreement id
|
||||
# You can find it on your own machine under `$ANDROID_HOME/license`,
|
||||
# and add the file content as a GitHub secret named `$ANDROID_LICENCE`.
|
||||
# android-licence: ${{ secrets.ANDROID_LICENCE }}
|
||||
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Run Gradle
|
||||
run: ./gradlew assembleDebug
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue