Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Set python-version #304

Set python-version

Set python-version #304

Workflow file for this run

name: CI
on: push
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install cfn-lint
- run: cfn-lint
sync:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [validate]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: restyled-io/aws-s3-sync-by-hash-action@v1
with:
root: cg-app
bucket: cg-app-cfstack-bucket
delete: true
env:
AWS_ACCESS_KEY_ID: ${{ secrets.aws_access_key_id }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.aws_secret_access_key }}
AWS_DEFAULT_REGION: us-east-1