forked from apache/yunikorn-site
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (54 loc) · 2.3 KB
/
auto-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# 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@v3
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@v3
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