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
- Host: GitHub
- URL: https://github.com/buildtool/setup-buildtools-action
- Owner: buildtool
- License: mit
- Created: 2021-09-28T11:49:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-05-27T09:36:28.000Z (about 1 year ago)
- Last Synced: 2025-05-27T10:38:24.267Z (about 1 year ago)
- Topics: deployment, docker, github-actions, kubernetes
- Language: Shell
- Homepage: https://buildtools.io/
- Size: 463 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Setup Buildtool Action
---
# 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.