adding missing file extension in workflow yaml file step #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update RSS feed | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'test_product_updates.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: install python packages | |
run: | |
pip install -r requirements.txt | |
- name: run markdown_to_rss.py script | |
run: python markdown_to_rss.py |