Update README.md #127
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: Build Site | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the site with grotsky | |
run: | | |
cd ${{ github.workspace }} && \ | |
make generate && \ | |
git config --global user.email "automated@github.com" && \ | |
git config --global user.name "Automated Build" && \ | |
git add . && \ | |
git commit -m "New build `date`" | |
git checkout -b gh-pages && \ | |
git push --set-upstream origin gh-pages --force |