mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
separate into pre-release and pull_request
This commit is contained in:
parent
d20c94d034
commit
da8a476236
2 changed files with 29 additions and 4 deletions
28
.github/workflows/prerelease.yml
vendored
Normal file
28
.github/workflows/prerelease.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
name: Pre-release
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Run Gradle command
|
||||||
|
uses: Raul6469/android-gradle-action@2.0.0
|
||||||
|
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 }}
|
||||||
|
|
||||||
|
- name: Create pre-release
|
||||||
|
uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
with:
|
||||||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
automatic_release_tag: "pre-release"
|
||||||
|
prerelease: true
|
||||||
|
title: "Pre-release Build"
|
||||||
|
files: |
|
||||||
|
app/build/outputs/apk/debug/*.apk
|
|
@ -1,9 +1,6 @@
|
||||||
# This workflow will build a Java project with Gradle
|
|
||||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
|
||||||
|
|
||||||
name: Artifact Build
|
name: Artifact Build
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
Loading…
Reference in a new issue