/buildpacks-action

Build container image with Cloud Native Buildpacks in GitHub Actions.

Primary LanguageDockerfileMIT LicenseMIT

@mamezou-tech/buildpacks-action

Run action

Build container image with Cloud Native Buildpacks in GitHub Actions.

on: [push]
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2

    - name: Build image
      uses: mamezou-tech/buildpacks-action@master
      with:
        image: 'foo-app'
        tag: '1.0.0'
        path: 'path/to/foo-app/'
        builder: 'gcr.io/paketo-buildpacks/builder:base'

    - name: Push image

Inputs

  • image : (required) Name of container image.
  • tag : (optional) Tag of container image. Default latest
  • path : (required) Path to target application.
  • builder : (required) Builder to use.