check-alive #2
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
# Check that the site is alive every few days. If the workflow fails, I get an | |
# email. | |
name: check-alive | |
on: | |
schedule: | |
- cron: '49 15 * * 3' # One hour after the weekly build-deploy | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: curl maxkapur.com and check contents | |
run: | | |
curl https://maxkapur.com -o tmp.html | |
grep 'Illusion Slopes' tmp.html |