Skip to content

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

License

Notifications You must be signed in to change notification settings

buildtool/setup-buildtools-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages