This is an automated email from the ASF dual-hosted git repository.
joshinnis pushed a commit to branch developer-manual
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/developer-manual by this push:
new 390e6d3 Delete build-documentation.yml
390e6d3 is described below
commit 390e6d39c8672de7a67f41c4d6415c9c69bf5667
Author: Josh Innis <[email protected]>
AuthorDate: Sat Oct 15 16:39:34 2022 +0900
Delete build-documentation.yml
Delete the build action temporarily
---
.github/workflows/build-documentation.yml | 46 -------------------------------
1 file changed, 46 deletions(-)
diff --git a/.github/workflows/build-documentation.yml
b/.github/workflows/build-documentation.yml
deleted file mode 100644
index f5a4beb..0000000
--- a/.github/workflows/build-documentation.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Build documentation
-
-on: push
-
-jobs:
- deploy:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
-
- - name: Setup Python
- uses: actions/setup-python@v2
- with:
- python-version: '3.10'
-
- - name: Upgrade pip
- run: |
- # install pip=>20.1 to use "pip cache dir"
- python3 -m pip install --upgrade pip
- - name: Get pip cache dir
- id: pip-cache
- run: echo "::set-output name=dir::$(pip cache dir)"
-
- - name: Cache dependencies
- uses: actions/cache@v2
- with:
- path: ${{ steps.pip-cache.outputs.dir }}
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
- restore-keys: |
- ${{ runner.os }}-pip-
- - name: Install dependencies
- run: python3 -m pip install -r ./requirements.txt
-
- - run: sphinx-build docs build/html/current
-
- - run: cp ./index.html ./build/html/current
-
- - name: Deploy-asf-staging
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_branch: asf-staging
- publish_dir: ./build/html/current
- destination_dir: age-dev-manual