Skip to content

Instantly share code, notes, and snippets.

@djmetzle
Last active February 2, 2025 17:45
Show Gist options
  • Save djmetzle/bc262e7e599b4a85330ad8304ac43607 to your computer and use it in GitHub Desktop.
Save djmetzle/bc262e7e599b4a85330ad8304ac43607 to your computer and use it in GitHub Desktop.
CI/CD in a nutshell

CI/CD

flowchart TD
    dev[developer] -->|pushes to| git
    git[git] -->|triggers| deploy{CI}

    deploy -->|is PR?| preview[preview deploy]
    preview -->|run tests| tested(tests pass)
    tested -->|merge to| git

    deploy -->|is master?| stage[staging deploy]
    stage -->|run tests| deploy_tested(tests pass)
    deploy_tested -->|deploy to| prod(Production)
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment