From bdc6e923d2a0eb56c1c66c6d221ea2e68a90a8a7 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Thu, 22 Feb 2024 21:22:31 -0800 Subject: [PATCH] added python script action --- .github/workflows/sst_deploy.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/sst_deploy.yaml b/.github/workflows/sst_deploy.yaml index 3bcaa6d..deec584 100644 --- a/.github/workflows/sst_deploy.yaml +++ b/.github/workflows/sst_deploy.yaml @@ -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: