Skip to content

build(deps): bump media3 from 1.5.0 to 1.5.1 #162

build(deps): bump media3 from 1.5.0 to 1.5.1

build(deps): bump media3 from 1.5.0 to 1.5.1 #162

Workflow file for this run

name: Android Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Load Google Service file
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA | base64 -di > app/google-services.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew :app:assembleDebug
- name: Upload a Build Artifact
if: success()
uses: actions/upload-artifact@v4.5.0
with:
name: build-artifact
path: |
./**/*.apk