Skip to content

Commit

Permalink
added python script action
Browse files Browse the repository at this point in the history
  • Loading branch information
magicalpuffin committed Feb 23, 2024
1 parent f9be297 commit bdc6e92
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/sst_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ jobs:
steps:
- name: Git clone the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Run python script
run: |
python -m markdown_to_json.process_content
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down

0 comments on commit bdc6e92

Please sign in to comment.