GitHub Actions and GitHub Pages

repo2wasm is available as a GitHub Action from GitHub Marketplace under the same name, i.e. repo2wasm, to publish the integrated development environment (IDE) to GitHub Pages.

Usage

Create the file .github/workflows/repo2wasm.yml with

name: Convert repository to Wasm-powered integrated development environment
on:
  push:
    branches:
      - main
jobs:
  create-ide:
    runs-on: ubuntu-24.04
    permissions:
      pages: write
      id-token: write
    steps:
      - name: Create IDE and publish to GitHub Pages
        uses: repo2wasm/gh-actions@0.4.0