Skip to content

Commit

Permalink
Create update_course_catalog.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe authored Jun 6, 2024
1 parent f26f96f commit fec9f16
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions update_course_catalog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

# Script to update the IBM course catalog

# Download course feed JSON file
python fetch_and_process_data.py

# Parse course data and extract course information
python parse_course_data.py > course_catalog.txt

# Update README.md with table of current courses and badges
python update_readme.py course_catalog.txt

# Commit changes
git add README.md
git commit -m "Updated IBM course catalog"
git push origin master

0 comments on commit fec9f16

Please sign in to comment.