From c76f935740c2da3fe9afc34a0a8229e1b2cbcbf3 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Wed, 9 Nov 2022 12:25:50 -0500 Subject: [PATCH] container-name -> image-name --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 5e25d2e..72bf6f1 100644 --- a/action.yml +++ b/action.yml @@ -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" @@ -33,7 +33,7 @@ runs: uses: docker/metadata-action@v4 with: images: | - ${{ inputs.container-name }} + ${{ inputs.image-name }} flavor: | latest=false tags: | @@ -57,7 +57,7 @@ runs: if: ${{ github.event_name == 'release' }} with: images: | - ${{ inputs.container-name }} + ${{ inputs.image-name }} flavor: | latest=true tags: |