Take screenshots #3454
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: Take screenshots | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
shot-scraper: | |
runs-on: ubuntu-latest | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- uses: actions/cache@v3 | |
name: Configure pip caching | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright/ | |
key: ${{ runner.os }}-browsers | |
- name: Cache OxiPNG | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/ | |
key: ${{ runner.os }}-cargo | |
- name: Install dependencies | |
run: | | |
pip install shot-scraper | |
which oxipng || cargo install oxipng | |
shot-scraper install | |
- name: Take retina shots | |
run: | | |
shot-scraper multi live.shots.yml --retina | |
- name: Optimize PNGs | |
run: |- | |
oxipng -o 4 -i 0 --strip safe screenshots/*.png | |
- name: Commit and push | |
if: github.ref == 'refs/heads/main' | |
run: |- | |
git config user.name "Automated" | |
git config user.email "actions@users.noreply.github.com" | |
git add -A | |
timestamp=$(date -u) | |
git commit -m "Screenshots Updated at ${timestamp}" || exit 0 | |
git pull --rebase | |
git push |