ci-cd-deployment

📁 sraloff/gravityboots 📅 6 days ago
2
总安装量
2
周安装量
#68613
全站排名
安装命令
npx skills add https://github.com/sraloff/gravityboots --skill ci-cd-deployment

Agent 安装分布

opencode 2
gemini-cli 2
claude-code 2
github-copilot 2
codex 2
kimi-cli 2

Skill 文档

CI/CD & Deployment

When to use this skill

  • Configuring GitHub Actions workflows.
  • Setting up automated deployments.
  • Configuring test runners in CI.

1. GitHub Actions

  • Triggers: on: push for branches, on: pull_request for verification.
  • Caching: Always cache dependencies (npm, pip, composer) to speed up builds.
    - uses: actions/setup-node@v4
      with:
        node-version: 18
        cache: 'npm'
    

2. Deployment

  • Atomic: Deployment should be atomic (zero downtime).
  • Migration: Run DB migrations during deployment, but ensure backward compatibility.
  • Secrets: Use repo secrets; never strict commit credentials.