Skip to content

Füge Installation von ffmpeg im Build-Prozess hinzu #9

Füge Installation von ffmpeg im Build-Prozess hinzu

Füge Installation von ffmpeg im Build-Prozess hinzu #9

Workflow file for this run

name: Build and upload Artifacts
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Copy build config
run: |
cp workflowConfig.json buildtools_config.json
- name: Run Build Script
run: |
chmod +x ./build.sh
./build.sh