From ea04ec20c9cf94818fcc7d7d15d2fbc2a0cb35c0 Mon Sep 17 00:00:00 2001 From: Danijel Simeunovic Date: Sat, 18 Apr 2026 20:54:48 +0200 Subject: [PATCH] remove docs wf --- .github/workflows/docs.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 4d9dbf1..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Deploy Gitea Pages - -on: - push: - branches: [ main ] - paths: - - 'docs/**' - - 'mkdocs.yml' - workflow_dispatch: - - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - apt-get update -qq - apt-get install -y -qq python3-pip - pip3 install --break-system-packages mkdocs mkdocs-material - - - run: mkdocs build - - - name: Deploy to Gitea Pages - run: | - cd site - git init - git config user.name "gitea-actions" - git config user.email "actions@forteapps.net" - git add . - git commit -m "Deploy docs" - git push --force "https://x-token:${{ secrets.GITEA_TOKEN }}@git.forteapps.net/Forte/launchpad.git" HEAD:gitea-pages