Skip to content

Latest commit

 

History

History

setup-action

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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'