Files
docs-blackroad-io/.github/workflows/deploy.yml
Alexa Louise 5c1ad5e418 🌌 BlackRoad OS, Inc. proprietary enhancement
- Update LICENSE to proprietary (NOT for commercial resale)
- Add/enhance README with BlackRoad branding
- Add copyright notice (© 2026 BlackRoad OS, Inc.)
- Add CONTRIBUTING.md with brand compliance guidelines
- Add GitHub Actions workflow with brand checks
- CEO: Alexa Amundson
- Designed for 30k agents + 30k employees
- Part of 578-repo BlackRoad Empire

Core Product: API layer above Google/OpenAI/Anthropic managing AI model
memory and continuity, enabling companies to operate exclusively by AI.

 Repository now enterprise-grade and legally protected

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-08 17:45:04 -06:00

53 lines
1.6 KiB
YAML

name: Deploy to Cloudflare Pages
on:
push:
branches: [main, master]
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Brand Compliance Check
run: |
echo "🎨 Checking BlackRoad brand compliance..."
if grep -r "#FF9D00\|#FF6B00\|#FF0066\|#FF006B\|#D600AA\|#7700FF\|#0066FF" . \
--include="*.html" --include="*.css" --include="*.js" --include="*.jsx" --include="*.tsx" 2>/dev/null; then
echo "❌ FORBIDDEN COLORS FOUND! Must use official BlackRoad colors:"
echo " ✅ Hot Pink: #FF1D6C"
echo " ✅ Amber: #F5A623"
echo " ✅ Electric Blue: #2979FF"
echo " ✅ Violet: #9C27B0"
exit 1
fi
echo "✅ Brand compliance check passed"
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: |
if [ -f "package.json" ]; then
npm install
fi
- name: Build
run: |
if [ -f "package.json" ] && grep -q '"build"' package.json; then
npm run build
fi
- name: Deploy to Cloudflare Pages
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: |
echo "🚀 Would deploy to Cloudflare Pages here"
echo " (Requires org secrets: CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID)"