Skip to content

supplypike/setup-bin

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

Repository files navigation

setup-bin

Actions Status

This action sets up a binary in $PATH for use in actions

steps:
  - uses: actions/checkout@v4
  - uses: supplypike/setup-bin@v4
    with:
      uri: 'https://github.com/google/go-containerregistry/releases/download/v0.19.1/go-containerregistry_Linux_x86_64.tar.gz'
      name: 'crane'
      version: '0.19.1'

You can also run install scripts:

steps:
  - uses: actions/checkout@v4
  - uses: supplypike/setup-bin@v4
    with:
      uri: 'https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.0.30.zip'
          name: 'aws'
          version: '2.0.30'
          command: sudo ./aws/install