Files
remotion-mv-hated-by-life-i…/.github/workflows/render-video.yml
2023-03-23 23:13:08 +08:00

23 lines
497 B
YAML

name: Render video
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
render:
name: Render video
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
- run: sudo apt update
- run: sudo apt install ffmpeg
- run: sudo apt install yarn
- run: yarn
- run: yarn build"
- uses: actions/upload-artifact@v2
with:
name: out.mp4
path: out/video.mp4