/workflows

Shared GitHub workflows

Primary LanguageJavaScript

workflows

Shared GitHub workflows

build-image

Builds a Docker image using paketobuildpacks/builder:base.

Example usage:

jobs:

  build:
    uses: jbrunton/workflows/.github/workflows/build-image.yml@develop
    with:
      repo-name: jbrunton/my-image
      buildpack: paketo-buildpacks/nodejs
      working-directory: api
      publish: true
      docker-username: jbrunton
    secrets:
      docker-access-token: ${{ secrets.DOCKER_ACCESS_TOKEN }}

See the workflow definition for more details on the inputs and outputs.