Change build to use precompiled snekdown

Signed-off-by: trivernis <trivernis@protonmail.com>
actions
trivernis 3 years ago
parent 04d479a73c
commit be98561e19
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -1,4 +1,4 @@
name: Rust
name: Snekdown
on:
push:
@ -17,13 +17,17 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Snekdown
run: cargo install snekdown --all-features
run: wget https://github.com/Trivernis/snekdown/releases/latest/download/snekdown-linux-x86_64 -O snekdown
- name: Make executable
run: chmod +x snekdown
- name: Create dist
run: mkdir dist
- name: Build
run: snekdown render main.md dist/index.html
run: ./snekdown render main.md dist/documentation.html
- name: Build PDF
run: ./snekdown render main.md dist/documentation.pdf
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: documentation.html
path: dist/index.html
name: documentation
path: dist/*
Loading…
Cancel
Save