diff options
| author | pasha-codefresh <pavel@codefresh.io> | 2024-10-23 14:23:00 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-23 07:23:00 -0400 |
| commit | 77198faace32a10e816044d7c834758fc7614b2d (patch) | |
| tree | 81eb847d279668b899baace95e3007eafe95d79b | |
| parent | e414d0d9098a8871eb149d38c0e4a5e226b5fa78 (diff) | |
fix: pass image tag into build image command (#893)
Signed-off-by: Pasha Kostohrys <pavel@codefresh.io>
| -rw-r--r-- | .github/workflows/create-release-draft.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/create-release-draft.yaml b/.github/workflows/create-release-draft.yaml index eb35d62..c66338e 100644 --- a/.github/workflows/create-release-draft.yaml +++ b/.github/workflows/create-release-draft.yaml @@ -41,7 +41,7 @@ jobs: run: | set -ex docker login --username "${DOCKER_USERNAME}" --password "${DOCKER_PASSWORD}" quay.io - IMAGE_PUSH=yes make multiarch-image + IMAGE_PUSH=yes IMAGE_TAG=v${{ steps.version.outputs.version }} make multiarch-image env: DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }} DOCKER_PASSWORD: ${{ secrets.QUAY_TOKEN }} |
