mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-29 06:23:00 +00:00
workflow changes
This commit is contained in:
parent
a959daf515
commit
518eb57598
2 changed files with 16 additions and 6 deletions
9
.github/workflows/android.yml
vendored
9
.github/workflows/android.yml
vendored
|
@ -3,11 +3,9 @@ name: Signed APK Builder
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
|
||||||
- dev
|
- dev
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- master
|
|
||||||
- dev
|
- dev
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -43,3 +41,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: 'Vanced-Manager'
|
name: 'Vanced-Manager'
|
||||||
path: ${{ steps.sign-app.outputs.signedReleaseFile }}
|
path: ${{ steps.sign-app.outputs.signedReleaseFile }}
|
||||||
|
|
||||||
|
- name: Upload to Discord
|
||||||
|
uses: sinshutsu/upload-todiscord@master
|
||||||
|
env:
|
||||||
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
|
with:
|
||||||
|
args: ${{ steps.sign-app.outputs.signedReleaseFile }}
|
9
.github/workflows/debug.yml
vendored
9
.github/workflows/debug.yml
vendored
|
@ -3,11 +3,9 @@ name: Debug APK Builder
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
|
||||||
- dev
|
- dev
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- master
|
|
||||||
- dev
|
- dev
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -34,3 +32,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: 'Vanced-Manager'
|
name: 'Vanced-Manager'
|
||||||
path: app/build/outputs/apk/debug/app-debug.apk
|
path: app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
||||||
|
- name: Upload to Discord
|
||||||
|
uses: sinshutsu/upload-todiscord@master
|
||||||
|
env:
|
||||||
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
|
with:
|
||||||
|
args: app/build/outputs/apk/debug/app-debug.apk
|
Loading…
Reference in a new issue