From 23608dbb018f34ba811b3963ba1c5a2b3c3b890f Mon Sep 17 00:00:00 2001 From: Stefano Date: Wed, 14 May 2025 20:15:26 -0500 Subject: [PATCH] Added deploy to AWS in build job - Fix 1 --- .gitea/workflows/aws_deploy_on_push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/aws_deploy_on_push.yml b/.gitea/workflows/aws_deploy_on_push.yml index 9ce9546..63ac96c 100644 --- a/.gitea/workflows/aws_deploy_on_push.yml +++ b/.gitea/workflows/aws_deploy_on_push.yml @@ -24,7 +24,7 @@ jobs: - name: Install Python dependencies and CDK run: | python -m pip install --upgrade pip - # install your Python dependencies here + pip install aws-cdk-lib constructs npm install -g aws-cdk - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@master @@ -34,5 +34,5 @@ jobs: aws-region: "us-east-2" - name: Deploy to AWS run: cdk deploy --app="python3 ${PWD}/app.py" --require-approval=never - + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file