Skip to content

openvex/setup-vexctl

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

setup-vexctl GitHub Action

This action enables you to install vexctl

Usage

This action currently supports GitHub-provided Linux, macOS and Windows runners (self-hosted runners may not work).

Add the following entry to your Github workflow YAML file:

uses: openvex/setup-vexctl@main
with:
  vexctl-release: '0.2.5' # optional

Example using a pinned version:

jobs:
  test_vexctl_action:
    runs-on: ubuntu-latest

    permissions: {}

    name: Install vexctl and test presence in path
    steps:
      - name: Install vexctl
        uses: openvex/setup-vexctl@main
        with:
          vexctl-release: '0.2.5' # optional
      - name: Check install!
        run: vexctl version

Example using the default version:

jobs:
  test_vexctl_action:
    runs-on: ubuntu-latest

    permissions: {}

    name: Install vexctl and test presence in path
    steps:
      - name: Install vexctl
        uses: openvex/setup-vexctl@main
      - name: Check install!
        run: vexctl version

Optional Inputs

The following optional inputs:

Input Description
vexctl-release vexctl version to use instead of the default.
install-dir directory to place the vexctl binary into instead of the default ($HOME/.vexctl).
use-sudo set to true if install-dir location requires sudo privs. Defaults to false.