mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-02-05 21:45:39 +00:00
* chore(lint): funcorder * chore(lint): yamlfmt, ignored broken test yaml files * chore(tests): tests do not output garbage, add coverage * chore(lint): fix editorconfig violations * chore(lint): move from eclint to editorconfig-checker * chore(lint): add pre-commit, run and fix * chore(ci): we use renovate to manage updates
17 lines
322 B
YAML
17 lines
322 B
YAML
---
|
|
name: 'Docker Action'
|
|
description: 'A Docker-based GitHub Action'
|
|
inputs:
|
|
dockerfile:
|
|
description: 'Path to Dockerfile'
|
|
required: true
|
|
default: 'Dockerfile'
|
|
outputs:
|
|
image-id:
|
|
description: 'Built Docker image ID'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.dockerfile }}
|