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:46:42 UTC

[age-website] branch master updated: modifying workflow .yml (#74)

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 3f6e63f  modifying workflow .yml (#74)
3f6e63f is described below

commit 3f6e63f3ef6051da03ca4e9409b5b1ee8e638eb6
Author: keikang0905 <59...@users.noreply.github.com>
AuthorDate: Tue Aug 30 15:46:37 2022 +0900

    modifying workflow .yml (#74)
    
    * workflow test
    
    * workflow test
    
    * workflow test
    
    Co-authored-by: keikang0905 <km...@naver.com>
---
 .github/workflows/build-documentation.yml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml
index 0e99f15..5a7b98f 100644
--- a/.github/workflows/build-documentation.yml
+++ b/.github/workflows/build-documentation.yml
@@ -4,7 +4,7 @@ on: push
 
 jobs:
   deploy:
-    runs-on: ubuntu-18.04
+    runs-on: ubuntu-20.04
     steps:
       - uses: actions/checkout@v2
         with:
@@ -19,7 +19,6 @@ jobs:
         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)"
@@ -31,7 +30,6 @@ jobs:
           key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
           restore-keys: |
             ${{ runner.os }}-pip-
-
       - name: Install dependencies
         run: python3 -m pip install -r ./requirements.txt
 
@@ -39,10 +37,18 @@ jobs:
 
       - run: cp ./index.html ./build/html
 
-      - name: Deploy
+      - name: Deploy-asf-site
         uses: peaceiris/actions-gh-pages@v3
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
           publish_branch: asf-site
           publish_dir: ./build/html
           destination_dir: docs
+
+      - name: Deploy-asf-staging
+        uses: peaceiris/actions-gh-pages@v3
+        with:
+          github_token: ${{ secrets.GITHUB_TOKEN }}
+          publish_branch: asf-staging
+          publish_dir: ./build/html
+          destination_dir: age-manual          
\ No newline at end of file