Skip to content

Generate Podcast Feeds #13

Generate Podcast Feeds

Generate Podcast Feeds #13

Workflow file for this run

name: Generate Podcast Feeds
run-name: Generate Podcast Feeds
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
# Using the podcast generator we created in another repo
- name: Run Feed Generator
uses: itzzjb/Podcast-Generator-With-Github-Actions@main
# - 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 Repo
# run: |
# git config user.email "github-actions[bot]github.com"
# git config user.name "github-actions[bot]"
# git add .
# git commit -m "Modified Feed"
# git push