Skip to content

Build(deps): bump docfx from 2.78.0 to 2.78.1 #10

Build(deps): bump docfx from 2.78.0 to 2.78.1

Build(deps): bump docfx from 2.78.0 to 2.78.1 #10

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Friedrich von Never <friedrich@fornever.me>
#
# SPDX-License-Identifier: MIT
name: Docs
on:
push:
branches:
- main
workflow_dispatch:
permissions:
actions: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
publish-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Dotnet Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- run: dotnet tool restore
- run: dotnet docfx docs/docfx.json
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4