| Nov | DEC | Jan |
| 11 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: github.com
Fix spelling in README.md0e9035e
TEMPLATE/aws-config.yml to your repository in the location: .github/aws-config.yml
●Validate all variables are correct and allow for proper permissions on AWS
●Add the Github Action: Deploy NodeJS to AWS Serverless to your current Github Actions workflow
●Enjoy your application on AWS
workflows folder similar to below:
●.github/workflows/deploy.yml
This file should have the following code:
--- ########################### ########################### ## Deploy GitHub Actions ## ########################### ########################### name: NodeJS AWS SAM Deploy # # Documentation: # https://help.github.com/en/articles/workflow-syntax-for-github-actions # ############################# # Start the job on all push # ############################# on: ['push'] ############### # Set the Job # ############### jobs: build: # Name the Job name: NodeJS AWS SAM Deploy # Set the agent to run on runs-on: ubuntu-latest ################## # Load all steps # ################## steps: ########################## # Checkout the code base # ########################## - name: Checkout Code uses: actions/checkout@master ############################# # Run NodeJS AWS SAM Deploy # ############################# - name: NodeJS AWS SAM Deploy uses: docker://admiralawkbar/aws-nodejs:latest env: AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }} ...NOTE: You will need to create the GitHub
Secrets for:
●AWS_ACCESS_KEY
●Valid AWS Access key to authenticate to your AWS Account
●AWS_SECRET_KEY
●Valid AWS Access Secret key to authenticate to your AWS Account