diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index ca9c21b..0522c5f 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -1,19 +1,15 @@ -name: Build and Deploy Notes -on: - push: - branches: - - main - jobs: build: runs-on: ubuntu-latest + container: + image: squidfunk/mkdocs-material steps: - name: Checkout code uses: actions/checkout@v4 - - name: Build with MkDocs Material + - name: Build run: | - docker run --rm -v $(pwd):/docs squidfunk/mkdocs-material build + mkdocs build - name: Deploy to Web Folder run: |