Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 599 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 599 Bytes

Docker action

To use the docker build, you can follow the example in test

We have two main use cases

Simple service with no subfolders

jobs:
  publish:
    uses: ./.github/workflows/docker-backend.yml
    secrets: inherit
    with:
      name: bar # name of service

should take care of everything

Complex service with subfolders

jobs:
  publish:
    uses: ./.github/workflows/docker-backend.yml
    secrets: inherit
    with:
      path: ./foo/bar # path to where the Dockerfile resides
      name: bar # name of service