From 297cff55f5440d98b117481d85ba5672e8e8d913 Mon Sep 17 00:00:00 2001 From: Alyssa Glasco Date: Sun, 19 May 2024 00:21:42 -0400 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..17a3259 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 github-actions@github.com + git add . + git commit -m "Modified Feed" + git push