Skip to content
package

GitHub Action

Setup Buildtools

v1.0.0 Latest version

Setup Buildtools

package

Setup Buildtools

Setup a Buildtools and add it to the PATH

Installation

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

              

- name: Setup Buildtools

uses: buildtool/[email protected]

Learn more about this action in buildtool/setup-buildtools-action

Choose a version

Setup Buildtool Action

GitHub Action for Buildtool

GitHub release GitHub marketplace


setup-buildtools-action

This action downloads and installs buildtools and adds it to $PATH At the moment it only supports Linux runners.

Usage

Below is a simple snippet to use this action.

name: example


on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: buildtool/setup-buildtools-action@v1
      - run: build

To specify a specific version of build-tools:

name: example with version

on:
  push:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: buildtool/setup-buildtools-action@v1
        with:
          buildtools-version: 0.22.3
      - run: build
Name Type Description
buildtools-version String Buildtool version, defaults to latest
debug-log String Enable verbose logging, defaults to false

License

MIT. See LICENSE for more details.