GitHub CI/CD
Summary
Key Concepts
Workflow Action Structure
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run a script
run: echo Hello, world!GitHub Secrets
Types of Secrets
Creating Secrets
Using Secrets in Workflows
Best Practices
AWS Integration
Setting up AWS Credentials
Example Workflow for AWS Deployment
Related Information
Last updated