forked from recloudstream/cloudstream
bruh
This commit is contained in:
parent
763392a857
commit
d20c94d034
1 changed files with 7 additions and 5 deletions
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
|
@ -7,19 +7,21 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Run Gradle command
|
- name: Run Gradle command
|
||||||
uses: Raul6469/android-gradle-action@2.0.0
|
uses: Raul6469/android-gradle-action@2.0.0
|
||||||
with:
|
with:
|
||||||
# The gradle command you wish to run (required)
|
|
||||||
# Here, `./gradlew test` will be run
|
|
||||||
script: assembleDebug
|
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 }}
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pull-request-build
|
name: pull-request-build
|
||||||
path: "build/outputs/apk/*.apk"
|
path: "app/build/outputs/apk/debug/*.apk"
|
||||||
|
|
Loading…
Reference in a new issue