ffmpeg-android-cli/.github/workflows/build.yml
Anton 7b6e3ed974
Some checks failed
/ Build (push) Failing after 10m38s
Set shell for gradlew
2024-05-18 18:48:53 +03:00

18 lines
368 B
YAML

on:
push:
branches: [ main ]
tags: [ '*' ]
jobs:
Build:
runs-on: ubuntu-22.04
container: saschpe/android-sdk:34-jdk22.0.1_8
steps:
- name: Install Node.js (for Actions)
run: apt-get update && apt-get install -yqq node.js
- uses: actions/checkout@v4
- name: Build APK
run: ./gradlew build
shell: bash