From 1e85e2d429e3edfaf5067d6598026089face6c0c Mon Sep 17 00:00:00 2001 From: Minseok Kim Date: Mon, 5 Jan 2026 11:07:38 +0900 Subject: [PATCH 1/3] Add GitHub Actions workflow for GitHub Pages deployment --- .github/workflows/deploy.yml | 67 ++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..5d3267d0 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,67 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + cache-dependency-path: website/package-lock.json + + - name: Install dependencies + working-directory: ./website + run: npm ci + + - name: Build + working-directory: ./website + run: npm run build + env: + SITE_URL: ${{ secrets.SITE_URL || 'https://actionbase.io/' }} + + - name: Copy CNAME file + run: cp CNAME website/dist/CNAME + + - name: Setup Pages + uses: actions/configure-pages@v4 + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./website/dist + + deploy: + if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 + From 82a0a83a698ae2ac02107b9b1d35a696b3bfecad Mon Sep 17 00:00:00 2001 From: Minseok Kim Date: Mon, 5 Jan 2026 11:11:16 +0900 Subject: [PATCH 2/3] Comment out the "Related Documents" section in encoding.mdx. --- website/src/content/docs/internals/encoding.mdx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/website/src/content/docs/internals/encoding.mdx b/website/src/content/docs/internals/encoding.mdx index c27124c6..2822cc32 100644 --- a/website/src/content/docs/internals/encoding.mdx +++ b/website/src/content/docs/internals/encoding.mdx @@ -137,10 +137,11 @@ All variable-length fields use 1-byte length prefix: - Supports binary-safe encoding - Allows prefix-based scanning -## Related Documents +[//]: # (## Related Documents) -- [How Both-Directed Edges Work](/internals/explained/edge-both-directed/) -- [How Out-Directed Edges Work](/internals/explained/edge-out-directed/) -- [How Multi-Edges Work](/internals/explained/multi-edge/) -- [How Aggregation Works](/internals/explained/aggregation/) +[//]: # () +[//]: # (- [How Both-Directed Edges Work](/internals/explained/edge-both-directed/)) +[//]: # (- [How Out-Directed Edges Work](/internals/explained/edge-out-directed/)) +[//]: # (- [How Multi-Edges Work](/internals/explained/multi-edge/)) +[//]: # (- [How Aggregation Works](/internals/explained/aggregation/)) From 51844612dfaeff92b40f3a751613106237d6c006 Mon Sep 17 00:00:00 2001 From: Minseok Kim Date: Mon, 5 Jan 2026 11:20:38 +0900 Subject: [PATCH 3/3] Rename GitHub Pages deployment workflow for clarity. --- .github/workflows/{deploy.yml => deploy-website.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{deploy.yml => deploy-website.yml} (97%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy-website.yml similarity index 97% rename from .github/workflows/deploy.yml rename to .github/workflows/deploy-website.yml index 5d3267d0..f707e21d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy-website.yml @@ -1,4 +1,4 @@ -name: Deploy to GitHub Pages +name: Actionbase Website (GitHub Pages) on: push: