From 14e4e15a488133ee3fbef184ebfa20dffa095ded Mon Sep 17 00:00:00 2001 From: Shane Myrick Date: Wed, 25 Sep 2024 16:09:31 -0700 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12f902a..f938e9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: version: - description: "Version string for Git and Docker tag" + description: "Version string for Git and Docker tag. Just number 1.2.3, no starting v" type: string required: true env: @@ -149,7 +149,7 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | - type=raw,value=${{ inputs.version }},event=workflow_dispatch + type=raw,value=v${{ inputs.version }},event=workflow_dispatch # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages. # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.