deployment-devops-workflow
Installation
SKILL.md
Deployment & DevOps Workflow
Automated CI/CD pipelines for design system deployment and monitoring.
Reliable deployment means changes flow smoothly from development through testing to production, with rollback options if needed.
GitHub Actions Basics
Workflow Structure
# .github/workflows/deploy.yml
name: Deploy
on:
push:
branches: [main]