mirror of
https://github.com/docker/login-action.git
synced 2026-08-25 08:21:48 +00:00
Use a local Docker container action so the runner still exercises its container-action mounts and environment without a docker:// workflow reference. Signed-off-by: Quentin Laplanche <quentin.laplanche@docker.com> Co-authored-by: Codex <noreply@openai.com>
16 lines
249 B
YAML
16 lines
249 B
YAML
name: Pull Docker image
|
|
|
|
description: Pull an image from a Docker container action
|
|
|
|
inputs:
|
|
image:
|
|
description: Image reference to pull
|
|
required: true
|
|
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- pull
|
|
- ${{ inputs.image }}
|