Gethubio

The Gethubio Protocol

Navigate to Settings > Pages in your repository. gethubio

Name it based on your project, or use username.github.io for a primary personal site. The Gethubio Protocol Navigate to Settings > Pages

name: Deploy static site on: push: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Setup Node uses: actions/setup-node@v4 with: node-version: '20' - run: npm ci - run: npm run build # builds to ./dist - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: $ secrets.GITHUB_TOKEN publish_dir: ./dist gethubio