-
Notifications
You must be signed in to change notification settings - Fork 18
New: Add docs page #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
New: Add docs page #112
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,4 +2,5 @@ coverage/ | |
| dist/ | ||
| node_modules/ | ||
| examples/ | ||
| docs/ | ||
| webpack.config.js | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| name: Deploy docs to GitHub Pages | ||
|
|
||
| on: | ||
| push: | ||
| # NOTE: `new/add-docs-page` is a TEMPORARY entry so the team can review a live | ||
| # deploy from the docs branch. Remove it before/at merge so main deploys only | ||
| # from main. | ||
| branches: [main, release/1.0.0, new/add-docs-page] | ||
|
tonilastre marked this conversation as resolved.
Outdated
|
||
| # Validate the bundle + docs build on any PR that touches them, so reviewers | ||
| # get a green check without needing Pages enabled or a merge to main. The | ||
| # deploy job below is skipped for PRs. | ||
| pull_request: | ||
| paths: | ||
| - "docs/site/**" | ||
| - "src/**" | ||
| - ".github/workflows/docs.yml" | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| # One deploy at a time, but keep PR builds from cancelling a main deploy (and | ||
| # vice versa) by scoping the group per ref. | ||
| concurrency: | ||
| group: pages-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 20 | ||
|
|
||
| # 1. Build the Orb browser bundle from source so the live demos stay in sync. | ||
| - name: Build Orb bundle | ||
| run: | | ||
| npm ci | ||
| npm run build:release | ||
|
|
||
| # 2. Refresh the copies the docs site embeds. | ||
| - name: Sync bundle into docs site | ||
| run: | | ||
| cp dist/browser/orb.min.js docs/site/public/orb.min.js | ||
| cp dist/browser/orb.worker.min.js docs/site/public/orb.worker.min.js | ||
| # The module worker loads this shared vendor chunk as a sibling; without | ||
| # it the worker fails silently and layout simulation never runs. | ||
| cp dist/browser/orb.worker.vendor.min.js docs/site/public/orb.worker.vendor.min.js | ||
|
|
||
| # 3. Build the VitePress site. | ||
| - name: Build docs | ||
| working-directory: docs/site | ||
| run: | | ||
| npm install | ||
| npm run build | ||
|
|
||
| # 4. Package for Pages. Only needed for an actual deploy, so skip on PRs | ||
| # (where these steps would also fail until Pages is enabled). | ||
| - uses: actions/configure-pages@v5 | ||
| if: github.event_name != 'pull_request' | ||
|
|
||
| - uses: actions/upload-pages-artifact@v3 | ||
| if: github.event_name != 'pull_request' | ||
| with: | ||
| path: docs/site/.vitepress/dist | ||
|
|
||
| deploy: | ||
| needs: build | ||
| # Deploy only from main; PRs run the build job above for validation only. | ||
| if: github.event_name != 'pull_request' | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| steps: | ||
| - id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before merging you can change this to
mainbecause we will merge release/1.0.0 too soon after this.