Build website and document #698
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You under the Apache License, Version 2.0 | |
# (the "License"); you may not use this file except in compliance with | |
# the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: "Build website and document" | |
env: | |
versions: ("master" "0.9") # defines what versions of document should be updated | |
latest_version: "0.9" # defines what version docs/latest links to | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # deploy every day | |
jobs: | |
build-website: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Copy out old docs directory | |
run: | | |
git fetch origin asf-site:asf-site | |
git checkout asf-site | |
if [[ -d docs ]] | |
then | |
cp -r docs /tmp/docs | |
else | |
mkdir /tmp/docs | |
fi | |
- name: Create asf-site branch | |
run: | | |
git checkout master | |
git branch -D asf-site | |
git checkout --orphan asf-site | |
- name: Copy back docs directory | |
run: cp -r /tmp/docs docs | |
- name: Build pages | |
run: | | |
current_dir=$(pwd) | |
git submodule update --init --recursive | |
mv pages /tmp/paimon-pages | |
cp ./.github/workflows/pages.sh /tmp/paimon-pages/pages.sh | |
cd /tmp/paimon-pages | |
. ./pages.sh | |
cp -r target/* "$current_dir" | |
cd "$current_dir" | |
- name: Build and move out main site | |
run: | | |
cd main | |
python build.py | |
cd .. | |
mv main/target/* . | |
rm -rf main | |
- name: Clone Paimon repo | |
run: git clone https://github.com/apache/paimon.git /tmp/paimon | |
- name: Build docs | |
run: | | |
declare -a versions=${{ env.versions }} | |
current_dir=$(pwd) | |
cp ./.github/workflows/docs.sh /tmp/paimon/docs.sh | |
for version in "${versions[@]}" | |
do | |
# delete old document | |
rm -rf docs/"$version" | |
mkdir docs/"$version" | |
# build new document | |
cd /tmp/paimon | |
git checkout master | |
if [ "$version" != "master" ] | |
then | |
git checkout release-"$version" | |
fi | |
. ./docs.sh | |
# copy document to target directory | |
cp -r docs/target/* "$current_dir"/docs/"$version" | |
# clean up | |
git reset --hard HEAD | |
cd "$current_dir" | |
done | |
# - name: Copy latest version | |
# run: | | |
# latest_version=${{ env.latest_version }} | |
# rm -rf docs/latest | |
# cp -r docs/"$latest_version" docs/latest | |
- name: Push to github | |
run: | | |
git add -A | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git commit -m "Build website and document" | |
git push -f origin asf-site |