docs: Add "Automating DevOps" CI/CD Guide to Cookbook #790
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
e guide on setting up a production-grade CI/CD pipeline for Base using GitHub Actions.
Manual deployments from local machines are risky and non-reproducible. This guide provides a "set it and forget it" workflow that automates testing, funding, and deployment.
Key Additions
Architecture: A 3-stage pipeline (Test -> Auto-Fund -> Deploy).
Auto-Funding Script: A Node.js script using the @eth-optimism/sdk to check L2 balances and automatically bridge ETH from Sepolia L1 if the deployer wallet is running low.
Security: Best practices for managing private keys using GitHub Secrets ("Disposable Deployers").
Workflow: A complete .github/workflows/deploy.yml template compatible with Foundry.
File Changes
🆕 Created: apps/base-docs/docs/cookbook/automating-devops.mdx
Checklist
[x] Frontmatter (YAML) is correctly formatted with double quotes for titles.
[x] Code snippets (GitHub Actions YAML & Node.js) are linted.
[x] Documentation follows the existing style guide.