Execute application with Gitea Actions

This commit is contained in:
2025-03-25 22:50:55 -04:00
parent d55b346b81
commit 83779faf46
3 changed files with 37 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
name: Execute video summary bot
on:
workflow_dispatch:
inputs:
video-url:
description: "URL for the video to be analyzed"
required: true
jobs:
Python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run applicaiton
run: python app.py