You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by hb...@apache.org on 2022/08/30 06:52:51 UTC

[age-website] branch master updated: Delete build-documentation-staging.yml

This is an automated email from the ASF dual-hosted git repository.

hbshin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/master by this push:
     new bea6958  Delete build-documentation-staging.yml
bea6958 is described below

commit bea695893482e138ec1acbe4dd74bce7044e26fc
Author: Hanbyeol Shin /  David Shin / 신한별 <76...@users.noreply.github.com>
AuthorDate: Tue Aug 30 15:52:43 2022 +0900

    Delete build-documentation-staging.yml
    
    Instead of too many github task workflows,
    Modified to work with one file.
---
 .github/workflows/build-documentation-staging.yml | 46 -----------------------
 1 file changed, 46 deletions(-)

diff --git a/.github/workflows/build-documentation-staging.yml b/.github/workflows/build-documentation-staging.yml
deleted file mode 100644
index a2bd23d..0000000
--- a/.github/workflows/build-documentation-staging.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Build documentation
-
-on: push
-
-jobs:
-  deploy:
-    runs-on: ubuntu-18.04
-    steps:
-      - uses: actions/checkout@v2
-        with:
-          fetch-depth: 0
-
-      - name: Setup Python
-        uses: actions/setup-python@v2
-        with:
-          python-version: '3.8'
-
-      - 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-multiversion docs build/html
-
-      - run: cp ./index.html ./build/html
-
-      - name: Deploy
-        uses: peaceiris/actions-gh-pages@v3
-        with:
-          github_token: ${{ secrets.GITHUB_TOKEN }}
-          publish_branch: asf-staging
-          publish_dir: ./build/html
-          destination_dir: docs