Skip to content

Upload Podcast

Upload Podcast #2

Workflow file for this run

name: Upload Podcast
on:
#schedule:
# - cron: '0 22 * * *' # This cron expression means "every day at 10 PM UTC"
workflow_dispatch: # Allows manual triggering
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7.9' # Specify the Python version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run script
run: |
python upload.py