Skip to content

Commit

Permalink
Merge pull request #910 from Cysharp/feature/FixDocs25020301
Browse files Browse the repository at this point in the history
Fix document
  • Loading branch information
mayuki authored Feb 3, 2025
2 parents cecf3f2 + bdbc9e6 commit 42434a4
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 29 deletions.
31 changes: 3 additions & 28 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Deploy to GitHub Pages
name: Test Run for Document Generation

on:
push:
pull_request:
branches:
- main
- release/**
paths:
- 'docs/**'
workflow_dispatch:

jobs:
build:
Expand All @@ -30,28 +30,3 @@ jobs:
- name: Build website
working-directory: docs
run: pnpm build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build

deploy:
name: Deploy to GitHub Pages
needs: build

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
57 changes: 57 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main
paths:
- 'docs/**'
workflow_dispatch:

jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
cache-dependency-path: 'docs/pnpm-lock.yaml'
- name: Install dependencies
working-directory: docs
run: pnpm install --frozen-lockfile
- name: Build website
working-directory: docs
run: pnpm build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build

deploy:
name: Deploy to GitHub Pages
needs: build

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Unary와 달리, StreamingHub는 인프라 수준과 ASP.NET Core 수준에서

## 여러 클라이언트를 한 번에 호출하기

StreamingHub는 여러 클라이언트(수신자)에게 한 번에 메시지를 보내는 기능이 있습니다. 이를 **그룹**이라고 합니다. 그룹은 여러 클라이언트를 묶는 메커니즘이며, 클라이언트는 여러 그룹에 속할 수 있습니다. 자세한 내용은 [그룹](../group) 페이지를 참조하시기 바랍니다.
StreamingHub는 여러 클라이언트(수신자)에게 한 번에 메시지를 보내는 기능이 있습니다. 이를 **그룹**이라고 합니다. 그룹은 여러 클라이언트를 묶는 메커니즘이며, 클라이언트는 여러 그룹에 속할 수 있습니다. 자세한 내용은 [그룹](group) 페이지를 참조하시기 바랍니다.

```mermaid
flowchart TD
Expand Down

0 comments on commit 42434a4

Please sign in to comment.