From 58d6e9acace3134a4f3b4d33bd34dad02cfbda5c Mon Sep 17 00:00:00 2001 From: Amir Mardan <46511946+AmirMardan@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:18:50 -0400 Subject: [PATCH] del custom age --- .github/workflows/docs_pages_workflow.yml | 49 ----------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/docs_pages_workflow.yml diff --git a/.github/workflows/docs_pages_workflow.yml b/.github/workflows/docs_pages_workflow.yml deleted file mode 100644 index 8e4e866..0000000 --- a/.github/workflows/docs_pages_workflow.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: docs_pages_workflow - -on: - push: - branches: [ dev ] - -jobs: - - build_docs_job: - runs-on: ubuntu-latest - env: - GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} - - steps: - - name: Checkout - uses: actions/checkout@v2.3.4 - - - name: Set up Python - uses: actions/setup-python@v2.2.1 - with: - python-version: 3.9 - - - name: Install dependencies - run: | - python -m pip install -U sphinx - python -m pip install sphinx-rtd-theme - - - name: make the sphinx docs - run: | - make -C docs clean - make -C docs html - - - name: Init new repo in dist folder and commit - run: | - cd docs/build/html/ - git init - touch .nojekyll - git add -A - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - git commit -m 'deploy' - - - name: Force push to destination branch - uses: ad-m/github-push-action@v0.5.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: gh-pages - force: true - directory: ./docs/build/html \ No newline at end of file