Skip to content

Commit

Permalink
Dev docs build rev 1 (#26682)
Browse files Browse the repository at this point in the history
* Dev docs build rev 1

* Do this work

* Aight its done

* Last bit of safety
  • Loading branch information
AffectedArc07 authored Sep 4, 2024
1 parent a3eb595 commit 641069e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/devdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy Devdocs

on:
push:
paths:
- 'docs/**'

jobs:
build_and_deploy:
runs-on: ubuntu-latest
name: Build and Deploy
steps:
- uses: actions/checkout@v4

- name: Build docs
run: |
python -m pip install mkdocs==1.6.0 mkdocs-material==9.5.31 mkdocs-github-admonitions-plugin==0.0.2
python -m mkdocs build
- name: Deploy docs
uses: Azure/static-web-apps-deploy@1a947af9992250f3bc2e68ad0754c0b0c11566c9
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
action: 'upload'
app_location: 'site'
skip_app_build: true
skip_api_build: true
env:
SKIP_DEPLOY_ON_MISSING_SECRETS: true

0 comments on commit 641069e

Please sign in to comment.