Skip to content

Setup Buildtools

Actions
Setup a Buildtools and add it to the PATH
v1.0.0
Latest
Star (0)

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.

Setup Buildtools is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Setup a Buildtools and add it to the PATH
v1.0.0
Latest

Setup Buildtools is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.