Skip to content

Commit

Permalink
chore: fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamed Shirbandi committed Nov 10, 2024
1 parent bc3ffe6 commit 3a4ca3d
Showing 1 changed file with 29 additions and 21 deletions.
50 changes: 29 additions & 21 deletions .github/workflows/deploy-docfx.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,42 @@
name: Deploy Documentation

on:
push:
branches:
- gh-pages
- main

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
actions: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
publish-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
- name: Checkout repository
- name: Checkout
uses: actions/checkout@v3

- name: Set up .NET
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"

- name: Install DocFX tool
run: |
dotnet tool install -g docfx
echo "$HOME/.dotnet/tools" >> $GITHUB_PATH
dotnet-version: 8.x

- name: Build documentation with DocFX
run: docfx build
- run: dotnet tool update -g docfx
- run: docfx <docfx-project-path>/docfx.json

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: gh-pages
# Upload entire repository
path: "<docfx-project-path>/_site"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 3a4ca3d

Please sign in to comment.