BirdNet-Pi MCP Server

by DMontgomery40
Verified
name: Deploy to GitHub Pages on: push: branches: - main jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install Dependencies run: npm ci - name: Deploy to GitHub Pages run: | git config --global user.name "GitHub Actions" git config --global user.email "actions@github.com" npm run deploy