[YUNIKORN-2415] Remove Chinese meeting (#399) #2
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: "auto-publish" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out latest code on master branch" | |
uses: actions/checkout@v4 | |
with: | |
path: './yunikorn-master' | |
- name: "Build and run website locally" | |
working-directory: './yunikorn-master' | |
run: | | |
NODE_VERSION=$(cat .nvmrc) && NODE_VERSION=${NODE_VERSION:-18.17} | |
git log master --pretty=format:"Auto refresh: %s" -n 1 > ../asf-site-commit.txt | |
docker build -t yunikorn/yunikorn-website:2.0.0 . --build-arg NODE_VERSION=${NODE_VERSION} | |
docker run --name yunikorn-site -d -p 3000:3000 yunikorn/yunikorn-website:2.0.0 | |
bash -c 'while true; do curl -Is http://localhost:3000 | head -n 1 | grep "OK"; [ $? -eq 0 ] && break; sleep 3; done' | |
timeout-minutes: 20 | |
- name: "Checkout asf-site branch" | |
uses: actions/checkout@v4 | |
with: | |
path: './yunikorn-asf-site' | |
ref: 'asf-site' | |
- name: "Commit changes" | |
working-directory: './yunikorn-asf-site' | |
run: | | |
mkdir /tmp/site-backup | |
docker cp yunikorn-site:/yunikorn-site/build /tmp/site-backup/ | |
echo "wipe out the content (except files starting with dot)" | |
rm -rf ./* | |
cp -R /tmp/site-backup/build/* . | |
git config --local user.email "[email protected]" | |
git config --local user.name "yunikorn-bot" | |
git add . | |
git commit -aF ../asf-site-commit.txt | |
git push |