Publish gh-pages to prod #194
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
# This is a basic workflow that is manually triggered | |
name: Publish gh-pages to prod | |
on: | |
workflow_dispatch: | |
jobs: | |
prod-sync: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.WEBSITE_TOKEN }} | |
steps: | |
- name: Clone production b.io | |
run: git clone https://ballerina-bot:$GITHUB_TOKEN@github.com/ballerina-platform/ballerina-platform.github.io.git | |
- name: Checkout new branch & backup spec/lang folder | |
run: | | |
cd ballerina-platform.github.io | |
git checkout -b deploy-website-$GITHUB_SHA origin/gh-pages | |
mkdir lang-bk | |
cp -r ./spec/lang/* ./lang-bk | |
rm -rf ./_next/* ./learn/* | |
git config --global user.email "ballerina-bot@ballerina.org" | |
git config --global user.name "ballerina-bot" | |
- name: Clone dev b.io | |
run: git clone -b gh-pages https://github.com/ballerina-platform/ballerina-dev-website.git | |
- name: Copy content from pre-prod to prod | |
run: | | |
cp -fr ./ballerina-dev-website/* ./ballerina-platform.github.io/ | |
- name: Rearrange files for prod | |
run: | | |
cd ballerina-platform.github.io | |
rm -rf ./spec/lang/* | |
cp -r ./lang-bk/* ./spec/lang/ | |
rm -rf CNAME robots.txt | |
cp -r ./utils/CNAME CNAME | |
cp -r ./utils/robots.txt robots.txt | |
rm -rf ./utils/ ./lang-bk/ | |
- name: Push changes | |
run: | | |
cd ballerina-platform.github.io | |
git add . | |
git commit --allow-empty -m 'Deploy website' | |
git push origin deploy-website-$GITHUB_SHA | |
echo 'Successfully pushed to deploy-website-$GITHUB_SHA branch' | |
- name: Create pull request for new site | |
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 pull-request -b gh-pages -m '[Automated] Deploy website' | |
env: | |
GITHUB_TOKEN: ${{ secrets.WEBSITE_TOKEN }} |