Update FPL H2H standings 2026-01-17-05-01-04 #1338
This file contains hidden or 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: hugo-build-push | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Checkout gh-pages to ./public | |
| uses: actions/checkout@v2 | |
| with: | |
| ref: gh-pages | |
| path: ./public | |
| - name: Build | |
| uses: ./.github/actions/hugo-build | |
| - name: Push to gh-pages | |
| working-directory: ./public | |
| run: | | |
| git config --global user.name "Filip Jeremic" | |
| git config --global user.email "filip@jeremic.ca" | |
| git add -A | |
| git commit -m "Deploy ${GITHUB_SHA}" --allow-empty | |
| git push |