1
0
setup-zola/action.yml
2024-06-13 21:02:27 +08:00

17 lines
510 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: Install dependencies
run: apt-get update && apt-get install -y curl tar
- name: Run install script
run: |
chmod +x ${{ github.action_path }}/scripts/install_zola.sh
${{ github.action_path }}/scripts/install_zola.sh ${{ inputs.version }}