This action downloads butler, a command-line tool by itch.io, and adds it to
the PATH
.
Simply run setup-butler
in a workflow to add the butler
command-line tool to
the PATH
:
steps:
- name: Set up butler
uses: jdno/setup-butler@v1
- name: Print butler version
run: butler -V
The behavior of setup-butler
can be customized with these settings.
Parameter | Description | Default |
---|---|---|
version |
The version of butler | latest |
The version
parameter can be used to set the version of butler that gets
installed.
steps:
- name: Set up butler
uses: jdno/setup-butler@v1
with:
version: 15.20.0
If the version
is not specified, the latest version will be installed.
👋 This is a welcoming and inclusive project. Be nice and follow our code of conduct.
The implementation of this action is inspired by actions/setup-node and bufbuild/buf-setup-action.
This project is released under the terms of the MIT License.