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