Skip to content

Merge overleaf-2023-07-16-0812 into main #29

Merge overleaf-2023-07-16-0812 into main

Merge overleaf-2023-07-16-0812 into main #29

Workflow file for this run

name: Build LaTeX Document
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Compile LaTeX document
uses: Sakul6499/[email protected]
with:
latex_main_file: CV.tex
- name: GIT commit and push PDF
env:
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "[email protected]"
git add CV.pdf
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push