You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Install a binary from GitHub releases
v1.2.0
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
- 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