Skip to content

Commit 4b60728

Browse files
authored
Refactor workflow to use podcast generator action
Removed Python setup and dependency installation steps, and replaced them with a call to a podcast generator action.
1 parent 27a6253 commit 4b60728

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,5 @@ jobs:
66
steps:
77
- name: Checkout Repo
88
uses: actions/checkout@v3
9-
- name: Setup Python
10-
uses: actions/setup-python@v4
11-
with:
12-
python-version: '3.10'
13-
- name: Install Dependencies
14-
run: |
15-
python -m pip install --upgrade pip
16-
pip install pyyaml
179
- name: Run Feed Generator
18-
run: python feed.py
19-
- name: Push Repo
20-
run: |
21-
git config user.name githib-actions
22-
git config user.email github-actions@github.com
23-
git add .
24-
git commit -m "Modified Feed"
25-
git push
10+
uses: ashtonward/pocast-generator@main

0 commit comments

Comments
 (0)