Files
remotion-mv-hated-by-life-i…/.github/workflows/render-video.yml
黑墨水鱼 e3a8d34fd7
Some checks failed
Render video / Render video (push) Failing after 1m42s
更新 .github/workflows/render-video.yml
2024-05-11 16:52:29 +08:00

22 lines
476 B
YAML

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