-
Notifications
You must be signed in to change notification settings - Fork 54
78 lines (63 loc) · 2.45 KB
/
master_build.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Sync spec in master with ballerina.io
on:
push:
branches:
- master
paths-ignore:
- '.github/**'
- 'conformance/**'
jobs:
sync_master_spec:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.BAL_BOT_PAT }}
steps:
- name: Checkout ballerina-spec
uses: actions/checkout@v2
- name: Clone ballerina-dev-website
run: git clone -b gh-pages --single-branch https://ballerina-bot:$GITHUB_TOKEN@github.com/ballerina-platform/ballerina-dev-website.git
- name: Clone ballerina-prod-website
run: git clone -b gh-pages --single-branch https://ballerina-bot:$GITHUB_TOKEN@github.com/ballerina-platform/ballerina-platform.github.io.git
- name: Install xsltproc
run: sudo apt-get install -y xsltproc
- name: Make
run: |
cd lang
make all
mv build/spec.html build/index.html
- name: Sync spec in master with ballerina-dev-website
run: |
cd ballerina-dev-website
git pull origin gh-pages
git config --global user.email "ballerina-bot@ballerina.org"
git config --global user.name "ballerina-bot"
git rm -r spec/lang/master/
cp -r ../lang/build/ spec/lang/master/
git add spec/lang/master/
git commit --allow-empty -m "[Automated] Update spec in master"
- name: Sync spec in master with ballerina-prod-website
run: |
cd ballerina-platform.github.io
git pull origin gh-pages
git config --global user.email "ballerina-bot@ballerina.org"
git config --global user.name "ballerina-bot"
git rm -r spec/lang/master/
cp -r ../lang/build/ spec/lang/master/
git add spec/lang/master/
git commit --allow-empty -m "[Automated] Update spec in master"
- name: Push new changes to ballerina-dev-website
shell: bash
run: |
cd ballerina-dev-website
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
bin/hub push
env:
GITHUB_TOKEN: ${{ secrets.BAL_BOT_PAT }}
- name: Push new changes to ballerina-prod-website
shell: bash
run: |
cd ballerina-platform.github.io
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
bin/hub push
env:
GITHUB_TOKEN: ${{ secrets.BAL_BOT_PAT }}