mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 17:25:51 +00:00
58eaeec226
* Bump the dependencies group with 5 updates * use MEL 8.0.3 * use MSTest meta package * revert Meziantou due to NRE * add a more useful global.json and pin third party action --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Hague <rob.hague00@gmail.com>
47 lines
911 B
YAML
47 lines
911 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
deploy:
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v5
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
|
|
- name: Setup docfx
|
|
run: dotnet tool update -g docfx
|
|
|
|
- name: Build documentation
|
|
run: docfx ./docfx/docfx.json
|
|
|
|
- name: Upload documentation
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: './docfx/_site'
|
|
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|