Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/api-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build and publish API docs

on:
push:
branches: [main]

jobs:
generate-docs:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100

- name: Setup DocFX
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install docfx

- name: Install dependencies
run: dotnet restore

- name: DocFX Build
working-directory: docfx
# https://stackoverflow.com/questions/56726429/how-to-run-multiple-commands-in-one-github-actions-docker
run: |
rm ../docs -Recurse -Force
docfx docfx.json
continue-on-error: false

- name: Publish
if: github.event_name == 'push'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
force_orphan: true
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Build NStack
name: Build & Test NStack

on:
push:
branches: [ main ]
branches: [ main, develop ]
pull_request:
branches: [ main ]
branches: [ main, develop ]

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,13 @@ Thumbs.db
# dotCover
*.dotCover

.vs/*
.vs/*

# API Docs
docfx/api

# Never push ./docs folder - the gh-pages branch is now used to publish to GH Pages
docs/

#git merge files
*.orig
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![License](https://img.shields.io/github/license/migueldeicaza/NStack.svg)](LICENSE)
![Bugs](https://img.shields.io/github/issues/migueldeicaza/NStack)

NOTE: NStack has moved to the guo-cs org: https://github.com/orgs/gui-cs/Currently, this library contains a port of the Go string, and Go rune support as well as other Unicode helper methods.
NOTE: NStack has moved to the gui-cs org: https://github.com/orgs/gui-cs/Currently, this library contains a port of the Go string, and Go rune support as well as other Unicode helper methods.

Currently, this library contains a port of the Go string, and Go rune support as well as other Unicode helper methods.

Expand Down
6 changes: 4 additions & 2 deletions docfx/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
This folder generates the API docs for NStack.

The API documentation is generated using the [DocFX tool](https://github.com/dotnet/docfx). The output of docfx gets put into the `./docs` folder which is then checked in. The `./docs` folder is then picked up by Github Pages and published to Miguel's Github Pages (https://migueldeicaza.github.io/NStack/).
The API documentation is generated via a GitHub Action (`.github/workflows/api-docs.yml`) using [DocFX](https://github.com/dotnet/docfx). The Action publishes the docs to the `gh-pages` branch, which gets published to https://gui-cs.github.io/NStack/.

## To Generate the Docs
## To Generate the Docs Locally

0. Install DotFX https://dotnet.github.io/docfx/tutorial/docfx_getting_started.html
1. Change to the `./docfx` folder and run `./build.ps1`
2. Browse to http://localhost:8080 and verify everything looks good.
3. Hit ctrl-c to stop the script.

If `docfx` fails with a `Stackoverflow` error. Just run it again. And again. Sometimes it takes a few times. If that doesn't work, create a fresh clone or delete the `docfx/api`, `docfx/obj`, and `docs/` folders and run the steps above again.

Note the `./docfx/build.ps1` script will create a `./docs` folder. This folder is ignored by `.gitignore`.
5 changes: 4 additions & 1 deletion docfx/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ dotnet build --configuration Release ../NStack.sln

rm ../docs -Recurse -Force


$env:DOCFX_SOURCE_BRANCH_NAME="main"

docfx --metadata
docfx --serve
docfx --serve --force
17 changes: 11 additions & 6 deletions docfx/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
}
],
"dest": "api/NStack",
"shouldSkipMarkup": true
"shouldSkipMarkup": true,
"properties": {
"TargetFramework": "net6.0"
}
],
"build": {
Expand Down Expand Up @@ -65,14 +67,17 @@
"globalMetadata": {
"_enableSearch": "true",
"_appLogoPath": "images/logo48.png",
"_disableContribution": true
"_disableContribution": false,
"_gitContribute": {
"repo": "https://github.com/gui-cs/NStack",
"branch": "develop",
"apiSpecFolder": "docfx/overrides"
},
"_gitUrlPattern": "github"
},
"globalMetadataFiles": [],
"fileMetadataFiles": [],
"template": [
"default"
],
"postProcessors": [ "ExtractSearchIndex" ],
"postProcessors": ["ExtractSearchIndex"],
"noLangKeyword": false,
"keepFileLink": false
}
Expand Down
116 changes: 0 additions & 116 deletions docs/README.html

This file was deleted.

Loading