Skip to content

Cleanup website with following (#276) #803

Cleanup website with following (#276)

Cleanup website with following (#276) #803

Workflow file for this run

name: Babelfish Website Build Workload
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && sed 's/url\:.*/url\: \"https:\/\/babelfish-for-postgresql.github.io\/babelfish_project_website\"/g' /srv/jekyll/_config.yml > /srv/jekyll/_config_CI.yml && jekyll build --config /srv/jekyll/_config_CI.yml --future"