Skip to content

Update feed.yaml

Update feed.yaml #17

Workflow file for this run

name: Generate Podcast Feed
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pyyaml
- name: Run Feed Generator
run: python feed.py
- name: Push Repo
run: |
git config user.name spiffai
git config user.email [email protected]
git add .
git commit -m "Modified Feed"
git push