mirror of https://github.com/eyhc1/rendercv.git
deploy gh-pages
This commit is contained in:
parent
c1f95af8a6
commit
8eebb129a4
|
@ -0,0 +1,24 @@
|
|||
name: ci
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.11
|
||||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
key: mkdocs-material-${{ env.cache_id }}
|
||||
path: .cache
|
||||
restore-keys: |
|
||||
mkdocs-material-
|
||||
- run: pip install mkdocs-material
|
||||
- run: mkdocs gh-deploy --force
|
|
@ -1,9 +1,9 @@
|
|||
((* macro date_and_location_strings(date_and_location_strings) *))
|
||||
((* for item in date_and_location_strings *))
|
||||
((* if loop.last *))
|
||||
((* for item in date_and_location_strings *))
|
||||
((* if loop.last *))
|
||||
<<item>>
|
||||
((* else *))
|
||||
((* else *))
|
||||
<<item>>\newline
|
||||
((* endif *))
|
||||
((* endfor *))
|
||||
((* endif *))
|
||||
((* endfor *))
|
||||
((* endmacro *))
|
|
@ -17,8 +17,6 @@
|
|||
&
|
||||
<<print_date_and_locations(date_and_location_strings)|indent(4)>>
|
||||
\end{tabularx}
|
||||
|
||||
\vspace{<<design.vertical_margin_between_entries>>}
|
||||
((* endmacro *))
|
||||
|
||||
((* macro experience(company, position, highlights, date_and_location_strings)*))
|
||||
|
@ -75,6 +73,5 @@
|
|||
((* else *))
|
||||
\textbf{<<name>>:} <<details>>
|
||||
((* endif *))
|
||||
\vspace{\YMarginBetweenEntries}
|
||||
\setlength{\leftskip}{0cm}
|
||||
((* endmacro *))
|
Loading…
Reference in New Issue