Files
Discord.Net/.github/workflows/docs.yml
Nora 3331614a7a [Docs] Fix inline code blocks and misc tweaks. (#2878)
* Fix code blocks and list items having overlap if they contain code blocks.

* Fixes for interaction framework intro guide.

* Add NuGet icon to top navbar.

* tweak action triggers

* Fix mobile navbar links.

* Add relatively ugly hack to improve toc filter functionality.

---------

Co-authored-by: Mihail Gribkov <61027276+Misha-133@users.noreply.github.com>
2024-03-15 08:02:25 +03:00

73 lines
1.6 KiB
YAML

name: Deploy Docs
on:
push:
tags:
- '*'
paths:
- 'docs/**'
branches:
- 'dev'
workflow_dispatch:
pull_request:
paths:
- 'docs/**'
branches:
- dev
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup DocFX
run: dotnet tool install -g docfx --version 2.75.2
- name: Build DNet docs
run: docfx docs/docfx.json
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: static-docs
path: docs/_site
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: static-docs
path: output/
- name: Auth DNet bot
id: bot_auth
uses: machine-learning-apps/actions-app-token@master
with:
APP_PEM: ${{ secrets.DNET_BOT_PEM }}
APP_ID: ${{ secrets.DNET_BOT_ID }}
- name: Push to the Docs Repo
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ steps.bot_auth.outputs.app_token }}
with:
source-directory: 'output'
destination-github-username: 'discord-net'
destination-repository-name: 'docs-static'
user-email: dnetbot@discordnet.dev
target-branch: master
target-directory: docs