diff --git a/.github/workflows/build-pdf.yml b/.github/workflows/build-pdf.yml index 9cf741d..7fed830 100644 --- a/.github/workflows/build-pdf.yml +++ b/.github/workflows/build-pdf.yml @@ -2,7 +2,7 @@ name: Build LaTeX document # Trigger the workflow on push or pull request on: [push, pull_request] env: - FINAL_FILENAME: Yakoub_13861700_2020.pdf + FINAL_FILENAME: thesis_final.pdf MAIN_LATEX: thesis.tex DATE_TIMEZONE: Europe/Brussels @@ -57,4 +57,4 @@ jobs: replace_assets: true assets: ${{ env.FINAL_FILENAME }} initial_mrkdwn: Release auto-generated by Github Actions 🎉 - github_token: ${{ github.token }} \ No newline at end of file + github_token: ${{ github.token }} diff --git a/README.md b/README.md new file mode 100644 index 0000000..206df91 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Template for EPL's UCLouvain Ph.D. Theses + +This repository contains a template to write your thesis with the CIACO's requirements. +Just look at thesis.tex and start writing :-) + +NB: For the bibliography, use Biber instead of BibTex. + +## Continuous Integration with GitHub + +If you use GitHub to host your repository, you can leverage the GitHub Actions to auto-generate the thesis PDF. +For this, you have a few environment variables to configure this workflow: + +| env variable | purpose | +|---|---| +| **MAIN_LATEX** | The entry point of your thesis (here it is thesis.tex) | +| **FINAL_FILENAME** | The final name of the file, which follows the naming conventions of the UCLouvain (for example : Yakoub_13861700_2020.pdf ) | +| **DATE_TIMEZONE** | The timezone for release (by default, Github uses GMT timezone) | + +Then in the Actions tab of your GitHub repository, you can build the thesis. \ No newline at end of file