From af785ef0ce34431c22655cb23b24e07c30244520 Mon Sep 17 00:00:00 2001 From: Aditya Shankar Paspunurwar Date: Thu, 1 May 2025 15:43:58 -0400 Subject: [PATCH] fixed ci.yml --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f88ff8..eea90bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,7 @@ name: ci on: push: branches: + - master - main permissions: contents: write @@ -13,9 +14,10 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: key: ${{ github.ref }} path: .cache - run: pip install mkdocs-material - - run: mkdocs gh-deploy --force --clean --verbose + - run: pip install pillow cairosvg + - run: mkdocs gh-deploy --force --remote-branch gh-pages --remote-name origin --config-file mkdocs.yml --site-dir site --verbose