Merge pull request #111 from JolanPhilippe/gh-pages-edit #652
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: Publish website | |
on: | |
push: | |
branches: [ gh-pages-edit ] | |
# schedule: | |
# - cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 13.x | |
- name: Installing dependencies | |
run: | | |
cd tools | |
npm install | |
- name: Complementing site data | |
run: | | |
cd tools | |
export YOUTUBE_API_KEY=${{ secrets.YOUTUBE_API_KEY }} | |
npm run update 2>&1 | tee site-data-collection.log | |
grep '[ERROR]' site-data-collection.log > site-data-collection_errors.log || true | |
if [ -s site-data-collection_errors.log ]; then | |
echo "::error file=tools/main.js::`tail -n 20 site-data-collection_errors.log`" | |
echo ":exclamation: Errors during Complementing site data, please check logs" >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
tail -n 20 site-data-collection_errors.log >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
fi | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.66.0' | |
extended: true | |
- name: Build website | |
run: hugo --minify | |
- name: Setting domain name | |
run: cp CNAME public/ | |
- name: Deploy website | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: master |