From 99f461a6a79cbaf7e732cebf1634b07b69a6511b Mon Sep 17 00:00:00 2001 From: John Wesley Walker III <81404201+jww3@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:32:20 +0100 Subject: [PATCH] Tweak input variable name and provide description. --- .github/workflows/update-test-ubuntu-git.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-test-ubuntu-git.yml b/.github/workflows/update-test-ubuntu-git.yml index 8e78cd3..b5ddfe4 100644 --- a/.github/workflows/update-test-ubuntu-git.yml +++ b/.github/workflows/update-test-ubuntu-git.yml @@ -6,7 +6,8 @@ on: # so avoid trigger events that run automatically.) workflow_dispatch: inputs: - pushToContainerRegistry: + publish: + description: 'Publish to ghcr.io?' type: boolean required: true default: false @@ -49,7 +50,7 @@ jobs: with: context: . file: images/test-ubuntu-git.Dockerfile - push: ${{ inputs.pushToContainerRegistry }} + push: ${{ inputs.publish }} tags: ${{ env.IMAGE_NAME }}:sha-${{ env.GITHUB_SHA }} # tags: ${{ steps.meta.outputs.tags }} # labels: ${{ steps.meta.outputs.labels }}