From 7cf9695b4b0e02c66a47d4d79d02afa27c8be869 Mon Sep 17 00:00:00 2001 From: Cassidy Wagner Date: Fri, 12 Jan 2024 00:13:09 -0800 Subject: [PATCH] undid changes to start over --- .github/workflows/sphinx.yml | 50 +++++++++++------------------------- 1 file changed, 15 insertions(+), 35 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 2c7e520..673d9b1 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -4,40 +4,20 @@ on: push jobs: build: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest permissions: - contents: write - strategy: - fail-fast: false - matrix: - python-version: ["3.10", "3.11", "3.12"] - os: [ubuntu-latest] - + contents: write steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - # - name: Install Dependencies - # run: | - # python -m pip install --upgrade pip - # pip install pandas - # pip install numpy - # pip install geopy - # pip install . - - - name: Build HTML - uses: ammaraskar/sphinx-action@master - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: html-docs - path: docs/build/html - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/build/html \ No newline at end of file + - uses: actions/checkout@v4 + - name: Build HTML + uses: ammaraskar/sphinx-action@master + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: html-docs + path: docs/build/html + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/build/html \ No newline at end of file