Skip to content

Commit

Permalink
Merge pull request #15 from Zalk0/main
Browse files Browse the repository at this point in the history
Feat: automatic deployement with workflow
  • Loading branch information
n3rada authored Feb 29, 2024
2 parents 883d6e2 + d8c7280 commit feae8e2
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 44 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: deploy

on: [ push, pull_request ]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Upload zip
uses: actions/upload-artifact@v4
with:
name: deploy
path: |
assets/
latex-files/
packages/
ressources-graphiques/
.latexmkrc
Makefile
rapportUTT.tex
rUTT.cls
- name: Compile LaTeX
uses: xu-cheng/latex-action@v3
with:
root_file: rapportUTT.tex
- name: Upload PDF
uses: actions/upload-artifact@v4
with:
name: rapportUTT
path: rapportUTT.pdf
Loading

0 comments on commit feae8e2

Please sign in to comment.