Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
archive

GitHub Action

Install a binary from GitHub releases

v1.2.0

Install a binary from GitHub releases

archive

Install a binary from GitHub releases

Install binaries from GitHub releases

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Install a binary from GitHub releases

uses: jaxxstorm/action-install-gh-release@v1.2.0

Learn more about this action in jaxxstorm/action-install-gh-release

Choose a version

install-gh-release GitHub Action

This repository contains an action for use with GitHub Actions, which will install any GitHub release into your action environment:

This is especially useful when installing arbitrary Go binaries. It can lookup the latest version, or download a specific tag

Usage

- name: Install go-task
  uses: jaxxstorm/action-install-gh-release@release/v1-alpha
  with: # Grab the latest version
    repo: go-task/task
- name: Install tf2pulumi
  uses: jaxxstorm/action-install-gh-release@release/v1-alpha
  with: # Grab a specific tag
    repo: pulumi/tf2pulumi
    tag: v0.7.0