Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.13 KB

README.md

File metadata and controls

45 lines (30 loc) · 1.13 KB

zsv/setup-action

CI

GitHub Action to set up zsv+zsvlib.

Supports Linux, macOS, and Windows runners.

Usage

Inputs

Input Required Default Description
version false latest Version/tag of the release

Outputs

Output Description
install-path Absolute path of the installation directory

Under the installation directory, the subdirectories will include:

  • bin: zsv/zsv.exe executable
  • include: header files
  • lib: libzsv library file

Example

Set up the latest version:

- name: Set up zsv+zsvlib
  uses: liquidaty/zsv/setup-action@main

Set up a specific version:

- name: Set up zsv+zsvlib
  uses: liquidaty/zsv/setup-action@main
  with:
    version: '0.3.9-alpha'