react-run 0.3.1

Run React code snippets/components from your command-line without config
name: Build and Deploy

on: [push]

jobs:
  build-and-deploy:
    concurrency: ci-${{ github.ref }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v3

      - name: Install and Build 🔧
        run: |
          mkdir output
          cp readme.md output/
          echo react.cli.rs >> output/CNAME
          echo theme: jekyll-theme-cayman >> output/_config.yml
      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@v4.2.5
        with:
          branch: gh-pages
          folder: output