Skip to content

Update main.yml

Update main.yml #9

Workflow file for this run

name: Generate Podcast Feeds
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
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 Changes
run: |
git config --global user.name "ozcaredo89"
git config --global user.email "oscar.hv89@gmail.com"
git add .
git commit -m "Modified Feed"
git push