0PricingLogin
CI/CD with GitHub Actions & DevOps Pipelines · Lesson

Your First GitHub Workflow

Create and execute your very first GitHub Actions workflow to automate a simple task in your repository.

Welcome to Workflows!

A workflow is an automated recipe of steps that runs in your repo. You write it as YAML and drop it into .github/workflows/.

The Core: Name & Triggers

Every workflow needs a name to identify it and an on key for its trigger. Use on: push to run whenever code lands.

All lessons in this course

  1. What is CI/CD and DevOps?
  2. GitHub Actions Core Concepts
  3. Your First GitHub Workflow
  4. Managing Secrets and Environment Variables
← Back to CI/CD with GitHub Actions & DevOps Pipelines