mirror of
https://github.com/olehomelchenko/olehomelchenko.com.git
synced 2026-02-05 02:54:37 +00:00
15 lines
395 B
Bash
Executable File
15 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Install Quarto
|
|
QUARTO_VERSION="1.6.42"
|
|
curl -LO "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.tar.gz"
|
|
tar -xzf "quarto-${QUARTO_VERSION}-linux-amd64.tar.gz"
|
|
export PATH="$PWD/quarto-${QUARTO_VERSION}/bin:$PATH"
|
|
|
|
# Install Python dependencies
|
|
pip install -r requirements.txt
|
|
|
|
# Render site
|
|
quarto render
|