f73e710e38
Build site and push to gh-pages / Build site (push) Waiting to run
Build / build (push) Waiting to run
Linter / lint (push) Waiting to run
Security / dependency-review (push) Waiting to run
Security / npm-audit (push) Waiting to run
Security / codeql (push) Waiting to run
Tests / test (push) Waiting to run
38 lines
947 B
YAML
38 lines
947 B
YAML
name: Build site and push to gh-pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build site
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Configuring build Environment
|
|
run: |
|
|
sudo apt-get update
|
|
python -m pip install -U pip
|
|
|
|
- name: Setup Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.0'
|
|
|
|
- name: Installing dependencies
|
|
run: |
|
|
python -m pip install -r docs/requirements.txt
|
|
gem install jekyll jekyll-remote-theme jekyll-sass-converter
|
|
|
|
- name: Build and deploy site
|
|
if: github.ref == 'refs/heads/main'
|
|
run: |
|
|
git remote set-url origin https://x-access-token:${{ secrets.MLC_GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
|
|
git config --global user.email "mlc-gh-actions-bot@nomail"
|
|
git config --global user.name "mlc-gh-actions-bot"
|
|
|
|
./scripts/gh_deploy_site.sh |