generated from jitinnair1/autoCV
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (62 loc) · 1.91 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# With some help from: https://gist.github.com/dgerosa/2e1f47a39180f39bde848e38243efa94
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
# Edit here with the names of your latex file and directory (can use ".")
DIR: .
FILEEN: david_doukhan_extended_cv_en
FILEFR: david_doukhan_extended_cv_fr
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: cven
uses: dante-ev/latex-action@latest
with:
root_file: ${{ env.FILEEN }}
working_directory: ${{ env.DIR }}
- name: cvfr
uses: dante-ev/latex-action@latest
with:
root_file: ${{ env.FILEFR }}
working_directory: ${{ env.DIR }}
- name: move
run: mkdir -p github_artifacts && mv ${{ env.DIR }}/${{ env.FILEEN }}.pdf ${{ env.DIR }}/${{ env.FILEFR }}.pdf ./github_artifacts/
- name: Upload pdfs as artifact
uses: actions/upload-artifact@v3
with:
name: pdfs
path: ./github_artifacts
deploy:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
path: github_artifacts
- name: move
run: mkdir -p github_deploy && mv github_artifacts/*/* github_deploy
- name: deploy on orphan branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./github_deploy
publish_branch: build
force_orphan: true
enable_jekyll: true
copy-index-to-build:
needs: [deploy]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Copy To Branches Action
uses: planetoftheweb/[email protected]
env:
key: main
files: index.html CNAME