Skip to content
Discussion options

You must be logged in to vote

I ended up figuring it out and using the below CI files:

Develop Docs - Updates on every push to which ever branch contains the latest development, in my case that's main.

name: Build/Publish Develop Docs 
on:
  push:
    branches:
      - main
permissions:
  contents: write
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - uses: actions/setup-python@v4
        with:
          python-version: 3.10.6
      - name: Install Dependencies
        run: |
          pip install mkdocs-material
          pip install pillow cairosvg mike
      - name: Setup Docs Deploy
        run: |
          git config --global u…

Replies: 3 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@adambirds
Comment options

@squidfunk
Comment options

Comment options

You must be logged in to vote
1 reply
@Andre601
Comment options

Answer selected by adambirds
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants