Skip to content

Commit 6831449

Browse files
authored
Merge pull request #69 from jsuarezruiz/docs
Create AlohaKit.Controls Docs
2 parents e79e5c1 + 91d2622 commit 6831449

File tree

381 files changed

+184676
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

381 files changed

+184676
-195
lines changed

.github/workflows/docs.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Your GitHub workflow file under .github/workflows/
2+
# Trigger the action on push to main
3+
name: Publish Docs
4+
5+
on: workflow_dispatch
6+
7+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
8+
permissions:
9+
actions: read
10+
pages: write
11+
id-token: write
12+
13+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
14+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
15+
concurrency:
16+
group: "pages"
17+
cancel-in-progress: false
18+
19+
jobs:
20+
publish-docs:
21+
environment:
22+
name: github-pages
23+
url: ${{ steps.deployment.outputs.page_url }}
24+
runs-on: windows-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v3
28+
- name: Dotnet Setup
29+
uses: actions/setup-dotnet@v3
30+
with:
31+
dotnet-version: 9.x
32+
33+
- run: dotnet workload restore
34+
- run: dotnet tool update -g docfx
35+
- run: docfx docs/docfx.json
36+
37+
- name: Upload artifact
38+
uses: actions/upload-pages-artifact@v3
39+
with:
40+
# Upload entire repository
41+
path: 'docs/_site'
42+
- name: Deploy to GitHub Pages
43+
id: deployment
44+
uses: actions/deploy-pages@v4

docs/_site/api/AlohaKit.Controls.Avatar.html

Lines changed: 1167 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)