Agent Skills: CoreWeave CI Integration

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/coreweave-ci-integration

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/coreweave-pack/skills/coreweave-ci-integration

Skill Files

Browse the full folder contents for coreweave-ci-integration.

Download Skill

Loading file tree…

plugins/saas-packs/coreweave-pack/skills/coreweave-ci-integration/SKILL.md

Skill Metadata

Name
coreweave-ci-integration
Description
|

CoreWeave CI Integration

GitHub Actions Workflow

name: CoreWeave Deploy
on:
  push:
    branches: [main]
    paths: ["k8s/**", "Dockerfile"]

jobs:
  build-deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Build and push container
        run: |
          echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
          docker build -t ghcr.io/${{ github.repository }}/inference:${{ github.sha }} .
          docker push ghcr.io/${{ github.repository }}/inference:${{ github.sha }}

      - name: Deploy to CoreWeave
        env:
          KUBECONFIG_DATA: ${{ secrets.COREWEAVE_KUBECONFIG }}
        run: |
          echo "$KUBECONFIG_DATA" | base64 -d > /tmp/kubeconfig
          export KUBECONFIG=/tmp/kubeconfig
          kubectl set image deployment/inference \
            inference=ghcr.io/${{ github.repository }}/inference:${{ github.sha }}
          kubectl rollout status deployment/inference --timeout=300s

      - name: Validate deployment
        run: |
          export KUBECONFIG=/tmp/kubeconfig
          kubectl get pods -l app=inference
# Store secrets
gh secret set COREWEAVE_KUBECONFIG --body "$(base64 -w0 ~/.kube/coreweave)"
gh secret set GHCR_TOKEN --body "$GITHUB_TOKEN"

Resources

Next Steps

For deployment patterns, see coreweave-deploy-integration.