Add GitHub Discussion link in the announcement #782
Workflow file for this run
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
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" |