16 lines
438 B
YAML
16 lines
438 B
YAML
name: "Setup Zola"
|
|
description: "Download and install Zola static site generator"
|
|
inputs:
|
|
version:
|
|
description: "The version of Zola to install"
|
|
required: false
|
|
default: "0.18.0"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Run install script
|
|
shell: bash
|
|
run: |
|
|
chmod +x ${{ github.action_path }}/scripts/install_zola.sh
|
|
${{ github.action_path }}/scripts/install_zola.sh ${{ inputs.version }}
|