3.3 KiB
3.3 KiB
marp, theme, footer, style
marp | theme | footer | style |
---|---|---|---|
true | default | @Chris_L_Ayers - https://chris-ayers.com | .columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; } .columns3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } @import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css' |
CI/CD with GitHub Actions
Chris Ayers
Senior Customer Engineer
Microsoft
Twitter: @Chris_L_Ayers Mastodon: @Chrisayers@hachyderm.io LinkedIn: - chris-l-ayers Blog: https://chris-ayers.com/ GitHub: Codebytes
Agenda
- YAML
- CI / CD
- Actions Overview
- Demos
Feature | Description |
---|---|
Lists | Start with a – |
Key-Value | Key: value |
Objects | Objects: Properties of objects |
What is CI/CD?
Actions Overview
- Actions are Event Driven
- Live in the .github/workflows folder
- Workflows are defined in YAML
Workflows
- Events trigger workflows
- Workflows contain jobs
- Jobs contain steps
- Steps are commands or actions
Jobs
- Workflows can contain multiple jobs
- Each job runs on a Runner
ACT
Run Actions Locally
DEMOS
Questions
Resources
Follow Chris Ayers
Twitter: @Chris_L_Ayers Mastodon: @Chrisayers@hachyderm.io LinkedIn: - chris-l-ayers Blog: https://chris-ayers.com/ GitHub: Codebytes