Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
spiffai authored May 19, 2024
1 parent fd22d9b commit 297cff5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Generate Podcast Feed
on: [push]
jobs:
build:
runs-on: ubuntu-lastest
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 Repo
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Modified Feed"
git push

0 comments on commit 297cff5

Please sign in to comment.