Push OCI images to a registry.
Find a file
TurtleException 6085114e10 Update README
Document usage together with docker-build action
2026-04-10 17:27:36 +02:00
src Create basic logic 2026-04-10 16:15:16 +02:00
action.yaml Add dependency check 2026-04-10 16:41:30 +02:00
LICENSE Create LICENSE 2026-04-10 16:09:41 +02:00
README.md Update README 2026-04-10 17:27:36 +02:00

Docker Push Action

Push OCI images to a registry.

Usage

- uses: https://forge.turtle-host.de/actions/docker-push@v1
  with:

    # List of image references to push. Separate by space or newline.
    refs: |
      forge.turtle-host.de/actions/docker-push:latest
      forge.turtle-host.de/actions/docker-push:v1

Usage together with actions/docker-build

- id: build
  uses: https://forge.turtle-host.de/actions/docker-build@v1

- uses: https://forge.turtle-host.de/actions/docker-push@v1
  with:
    refs: ${{ steps.build.outputs.refs }}