Skip to content

Commit

Permalink
container-name -> image-name
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 9, 2022
1 parent dc07d6a commit c76f935
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "Bento Build"
description: "Composite GitHub action for building Bento images"
inputs:
container-name:
description: "Container name"
image-name:
description: "Image name"
required: true
development-dockerfile:
description: "Development Dockerfile path"
Expand Down Expand Up @@ -33,7 +33,7 @@ runs:
uses: docker/metadata-action@v4
with:
images: |
${{ inputs.container-name }}
${{ inputs.image-name }}
flavor: |
latest=false
tags: |
Expand All @@ -57,7 +57,7 @@ runs:
if: ${{ github.event_name == 'release' }}
with:
images: |
${{ inputs.container-name }}
${{ inputs.image-name }}
flavor: |
latest=true
tags: |
Expand Down

0 comments on commit c76f935

Please sign in to comment.