Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudha-hub1998/podcast-generator
Generates Podcasts using YAML, hosted by GitHub pages.
https://github.com/sudha-hub1998/podcast-generator
actions feed guthub-actions podcast python rss xml
Last synced: about 1 month ago
JSON representation
Generates Podcasts using YAML, hosted by GitHub pages.
- Host: GitHub
- URL: https://github.com/sudha-hub1998/podcast-generator
- Owner: sudha-hub1998
- License: mit
- Created: 2024-08-02T00:55:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T04:25:48.000Z (4 months ago)
- Last Synced: 2024-09-30T23:23:40.896Z (about 2 months ago)
- Topics: actions, feed, guthub-actions, podcast, python, rss, xml
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Podcast Feed Generator
A GitHub action to generate a podcast feed from a YAML file. YAML is much easier to read and write than XML, and this action will convert your YAML file into a valid podcast feed.
## Usage### Turn on Github Pages
In your repository, go to Settings > Pages and select the main branch as the source. This will create a link to your page and give all of the content in the main branch a URL. Note the URL for the next step.
### Create a YAML file
Create a YAML file in your repository with the following format:
```yaml
title:
subtitle:
author:
description:
link:
image:
language:
category:
format:
item:
- title:
description:
published:
file:
duration:
length:
... Repeat for each episode
```### Sample Workflow
You're also going to need your own workflow file. Here's a sample:
```yaml
name: Generate Feed
on: [push]
jobs:
generate-feed:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Feed Generator
uses: planetoftheweb/podcast-feed-generator@main
```