Derived from MikeBild/aws-cdk-js-github-action
Create a GitHub workflow file .github/workflows/main.yml
.
name: CICD
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: GitHub Checkout
uses: actions/checkout@v1
- name: AWS CDK Deploy
uses: cmsd2/aws-cdk-java-github-action@1.0.0
with:
args: deploy
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: eu-central-1
AWS_ACCESS_KEY_ID
– RequiredAWS_SECRET_ACCESS_KEY
– Required
See the CDK developer guide for more information.
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.