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
- What is CI/CD and DevOps?
- GitHub Actions Core Concepts
- Your First GitHub Workflow
- Managing Secrets and Environment Variables