Skip to content

Commit

Permalink
Removed support for .NET5. moved documentations to GitHub action
Browse files Browse the repository at this point in the history
- Removed the out of support .NET 5.
- Removed Docs folder to reduce the repository size
- Added GitHub action to build and deploy the documentations
  • Loading branch information
paulushub committed Oct 30, 2023
1 parent 3e2f046 commit 77ede2e
Show file tree
Hide file tree
Showing 5,098 changed files with 87 additions and 1,185,551 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .github/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## GitHub Actions
The only action provided is for building the documentations through DocFX.
33 changes: 33 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# A GitHub workflow file for DocFX under .github/workflows/
name: DocFX

on:
push:
branches:
- master

jobs:
publish-docs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x

- run: dotnet tool update -g docfx
- run: docfx docfx/docfx.json

- name: Upload DocFX packages
uses: actions/upload-artifact@v3
with:
name: docfx_site
path: ${{ github.workspace }}/docfx/_site

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docfx/_site
21 changes: 0 additions & 21 deletions Libraries/net5.0-windows/Diga.LICENSE

This file was deleted.

23 changes: 0 additions & 23 deletions Libraries/net5.0-windows/ICSharpCode.TextEditor.deps.json

This file was deleted.

Binary file removed Libraries/net5.0-windows/ICSharpCode.TextEditor.dll
Binary file not shown.
2,501 changes: 0 additions & 2,501 deletions Libraries/net5.0-windows/ICSharpCode.TextEditor.xml

This file was deleted.

This file was deleted.

Binary file not shown.
Loading

0 comments on commit 77ede2e

Please sign in to comment.