-
Notifications
You must be signed in to change notification settings - Fork 54
107 lines (85 loc) · 3.56 KB
/
update_release.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: Update major spec releases in ballerina.io
on:
workflow_dispatch:
release:
types: [published]
jobs:
sync_major_spec:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.BAL_BOT_PAT }}
steps:
- name: Checkout ballerina-spec
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Python Packages
run: |
pip install requests
- name: Clone ballerina-dev-website
run: git clone -b master --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: Make new folder location in ballerina-dev-website
run: |
cd ballerina-dev-website/public/spec/lang
array=($(echo $GITHUB_REF | tr "/" "\n"))
len=${#array[@]}
tag="${array[len-1]}"
folder_name="${tag:1}"
if [ -d "$folder_name" ]; then rm -Rf "$folder_name"; fi
mkdir "$folder_name"
echo "NEW_FOLDER=$folder_name" >> $GITHUB_ENV
- name: Make new folder location in ballerina-prod-website
run: |
cd ballerina-platform.github.io/spec/lang
if [ -d "${NEW_FOLDER}" ]; then rm -Rf "${NEW_FOLDER}"; fi
mkdir "${NEW_FOLDER}"
- name: Install xsltproc
run: sudo apt-get install -y xsltproc
- name: Make
run: |
git checkout $GITHUB_REF -b tmp
cd lang
make all
mv build/spec.html build/index.html
- name: Copy new spec to ballerina-dev-website
run: cp -r lang/build/* ballerina-dev-website/public/spec/lang/$NEW_FOLDER
- name: Copy new spec to ballerina-prod-website
run: cp -r lang/build/* ballerina-platform.github.io/spec/lang/$NEW_FOLDER
- name: Update the list of draft specs in ballerina-dev-website
run: python3 .github/scripts/update_specs_table.py ballerina-dev-website/spec/spec.md
- name: Sync ballerina-spec with ballerina-dev-website
run: |
cd ballerina-dev-website
git pull origin master
git config --global user.email "ballerina-bot@ballerina.org"
git config --global user.name "ballerina-bot"
git add public/spec/
git commit --allow-empty -m "[Automated] Sync new spec release with ballerina dev site"
- name: Sync ballerina-spec 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 add spec/
git commit --allow-empty -m "[Automated] Sync new spec release with ballerina prod site"
- 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 }}