feat: upgrade colors to oklch #43
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: Regenerate Resume | |
on: | |
push: | |
paths: | |
- '.github/actions/setup/action.yml' | |
- '.github/workflows/regenerate_resume.yml' | |
- 'assets/resume.css' | |
- 'assets/resume/*.css' | |
- 'content/resume.json' | |
- 'layouts/_default/resume.html' | |
- 'layouts/partials/resume/*.html' | |
- 'resume-snapshotter.ts' | |
jobs: | |
regenerate_resume: | |
runs-on: ubuntu-latest | |
if: "! contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- run: pnpm install --frozen-lockfile | |
- run: npx playwright install --with-deps chromium | |
- run: pnpm gen:resume:ci | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file_pattern: 'static/resume.*' | |
commit_message: | | |
gen: generate update resume [skip ci] | |
branch: main | |
commit_user_name: resume-generator 🤖 | |
commit_user_email: [email protected] | |
commit_author: resume-generator 🤖 <[email protected]> |