mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-24 20:25:17 +00:00
Update compile-android.yml
This commit is contained in:
parent
1838e26321
commit
554e077d5c
1 changed files with 32 additions and 9 deletions
41
.github/workflows/compile-android.yml
vendored
41
.github/workflows/compile-android.yml
vendored
|
@ -1,9 +1,32 @@
|
|||
on: [push]
|
||||
name: Build Android App
|
||||
uses: sparkfabrik/android-build-action@v1.0.0
|
||||
with:
|
||||
project-path: android
|
||||
output-path: bettertube.apk
|
||||
browserstack-upload: false
|
||||
browserstack-username: ${{ secrets.BROWSERSTACK_USERNAME }}
|
||||
browserstack-access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
|
||||
name: Publish Native Android Library
|
||||
|
||||
on: workflow_dispatch
|
||||
jobs:
|
||||
publish-android:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: native-publish
|
||||
- name: set up JDK 11
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'zulu'
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x ./android/gradlew
|
||||
- name: Grant execute permission for publishing script
|
||||
run: chmod +x ./scripts/publish-android.sh
|
||||
- name: Run publish script
|
||||
working-directory: ./scripts
|
||||
env:
|
||||
ANDROID_OSSRH_USERNAME: ${{ secrets.ANDROID_OSSRH_USERNAME }}
|
||||
ANDROID_OSSRH_PASSWORD: ${{ secrets.ANDROID_OSSRH_PASSWORD }}
|
||||
ANDROID_SIGNING_KEY_ID: ${{ secrets.ANDROID_SIGNING_KEY_ID }}
|
||||
ANDROID_SIGNING_PASSWORD: ${{ secrets.ANDROID_SIGNING_PASSWORD }}
|
||||
ANDROID_SIGNING_KEY: ${{ secrets.ANDROID_SIGNING_KEY }}
|
||||
ANDROID_SONATYPE_STAGING_PROFILE_ID: ${{ secrets.ANDROID_SONATYPE_STAGING_PROFILE_ID }}
|
||||
run: ./publish-android.sh
|
||||
|
|
Loading…
Reference in a new issue