This commit is contained in:
parent
c7fe20acc8
commit
91d1fe9a74
1 changed files with 6 additions and 8 deletions
|
@ -6,17 +6,15 @@ jobs:
|
|||
checkout:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: check out repo
|
||||
uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v3
|
||||
- name: compile
|
||||
run: |
|
||||
pdflatex main.tex
|
||||
- name: prepare pages
|
||||
- name: Prepare pages
|
||||
run: |
|
||||
mkdir public2
|
||||
mv main.pdf main.log public2
|
||||
- uses: actions/pages@v1
|
||||
mkdir public
|
||||
mv main.pdf main.log public
|
||||
- name: Deploy to pages
|
||||
uses: actions/pages@v1
|
||||
with:
|
||||
directory: public2
|
||||
index-title: 'Just a CI test'
|
||||
index: false
|
||||
|
|
Loading…
Reference in a new issue