ffmpeg-android-cli/.github/workflows/build.yml

18 lines
368 B
YAML
Raw Permalink Normal View History

2024-05-18 17:29:36 +03:00
on:
push:
2024-05-18 17:30:12 +03:00
branches: [ main ]
2024-05-18 17:29:36 +03:00
tags: [ '*' ]
jobs:
Build:
runs-on: ubuntu-22.04
container: saschpe/android-sdk:34-jdk22.0.1_8
steps:
2024-05-18 18:18:13 +03:00
- name: Install Node.js (for Actions)
run: apt-get update && apt-get install -yqq node.js
2024-05-18 17:29:36 +03:00
2024-05-18 18:25:39 +03:00
- uses: actions/checkout@v4
2024-05-18 17:29:36 +03:00
- name: Build APK
run: ./gradlew build
2024-05-18 18:48:53 +03:00
shell: bash