mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-11 01:36:39 +00:00
2f0ae3190c
* Bump actions/checkout from 4 to 5 * Bump actions/upload-pages-artifact from 3 to 4 * Bump actions/download-artifact from 4 to 5 * Bump the dependencies group with 5 updates * fix * fix locally failing portforwarding tests port already in use --------- 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@v5
|
|
|
|
- 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@v4
|
|
with:
|
|
path: './docfx/_site'
|
|
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|