feat: add favicon #68
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: Run Puppeteer Script | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
run-puppeteer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Install Puppeteer | |
run: PUPPETEER_PRODUCT=chrome deno run -A https://deno.land/x/puppeteer@16.2.0/install.ts | |
- name: Remove old cv.pdf | |
run: if [ -f public/cv.pdf ]; then rm -f public/cv.pdf; fi | |
- name: Run Puppeteer script | |
run: deno run -A scripts/puppeteer.js | |
- name: Commit and push changes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git fetch origin master | |
git reset --soft FETCH_HEAD | |
git add public/cv.pdf | |
git commit -m "chore: update cv.pdf" | |
git push origin master |