mirror of
https://github.com/ivuorinen/ghaw-auditor.git
synced 2026-01-26 03:14:09 +00:00
22 lines
343 B
YAML
22 lines
343 B
YAML
---
|
|
name: 'Docker Action'
|
|
description: 'A Docker action example'
|
|
|
|
inputs:
|
|
dockerfile:
|
|
description: 'Path to Dockerfile'
|
|
required: false
|
|
default: 'Dockerfile'
|
|
|
|
outputs:
|
|
image-id:
|
|
description: 'Built image ID'
|
|
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.dockerfile }}
|
|
env:
|
|
BUILD_ENV: production
|