An open API service indexing awesome lists of open source software.

https://github.com/buildtool/setup-buildtools-action

Github setup action for buildtools - for fast a simple build and deployment to Kubernetes clusters
https://github.com/buildtool/setup-buildtools-action

deployment docker github-actions kubernetes

Last synced: 5 months ago
JSON representation

Github setup action for buildtools - for fast a simple build and deployment to Kubernetes clusters

Awesome Lists containing this project

README

          


Setup Buildtool Action


GitHub Action for Buildtool



GitHub release
GitHub marketplace

---

# setup-buildtools-action

This action downloads and installs [buildtools](https://buildtools.io/) and adds it to `$PATH`
At the moment it only supports Linux runners.

## Usage

Below is a simple snippet to use this action.

```yaml
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:

```yaml

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.