Skip to content

github action test

github action test #2

Workflow file for this run

name: Build & Commit the resume PDF
on: [push]
jobs:
build:
name: Build PDF
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: yusancky/setup-typst@v2
id: setup-typst
with:
version: 'v0.7.0'
- name: Build PDF
run: 'make all'
- name: Git Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5.0.0
with:
commit_message: 'Update resume PDF'
commit_options: '--no-verify --signoff'
branch: 'master'
file_pattern: '*.pdf'
repository: .