docs(README): add support for enhanced RTMP #343
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Gradle | |
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 12 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 12 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew build | |
- name: Assemble | |
run: ./gradlew assembleDebug | |
- name: Upload APKs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: apks | |
path: | | |
demos/**/build/outputs/apk/debug/*.apk | |