Skip to content

uniget-org/uniget-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uniget-action

GitHub Action to run uniget and install tools from the container ecosystem.

Inputs

version

Version of uniget to use. It can be set to any existing version (at least 2.2.49) and defaults to latest.

path

Path to install uniget into. Defaults to /usr/local/bin.

tools

Space separated list of tools to install. If this is not empty, the metadata will be updated automatically. Defaults to an empty string.

prefix

Directory under which to install tools. Defaults to an empty string.

target

Subdirectory of prefix under which to install tools. Defaults to usr/local.

skip-conflicts

Skip tools that cause a conflict. Defaults to true.

Outputs

None

Examples

Install all tools using the latest version of uniget:

    - name: Install
      uses: uniget-org/uniget-action

Install only some tools:

  - name: Install
    uses: uniget-org/uniget-action
    with:
      only: true
      list: "docker yq"

Install using a specific version of uniget:

    - name: Install
      uses: uniget-org/uniget-action
      with:
        version: 2.2.50