From e7c77b7bf364b06e0f178a2f8dd77cf26e49d726 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Wed, 26 Mar 2025 11:38:56 +0100 Subject: [PATCH] ci(continous-delivery): fix wrong version --- .github/workflows/continuous-delivery.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 1ada08b3..1bb094e6 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -24,7 +24,7 @@ jobs: with: docker_hub_username: ${{ secrets.DOCKERHUB_USERNAME }} docker_hub_password: ${{ secrets.DOCKERHUB_TOKEN }} - version: pr-${{ github.event.pull_request.number }} + version: ${{ github.event.release.tag_name }} platform: linux/amd64 skip_integrations_tests: true @@ -44,7 +44,7 @@ jobs: with: docker_hub_username: ${{ secrets.DOCKERHUB_USERNAME }} docker_hub_password: ${{ secrets.DOCKERHUB_TOKEN }} - version: pr-${{ github.event.pull_request.number }} + version: ${{ github.event.release.tag_name }} platform: linux/386 skip_integrations_tests: true @@ -64,7 +64,7 @@ jobs: with: docker_hub_username: ${{ secrets.DOCKERHUB_USERNAME }} docker_hub_password: ${{ secrets.DOCKERHUB_TOKEN }} - version: pr-${{ github.event.pull_request.number }} + version: ${{ github.event.release.tag_name }} platform: linux/arm64 skip_integrations_tests: true @@ -84,7 +84,7 @@ jobs: with: docker_hub_username: ${{ secrets.DOCKERHUB_USERNAME }} docker_hub_password: ${{ secrets.DOCKERHUB_TOKEN }} - version: pr-${{ github.event.pull_request.number }} + version: ${{ github.event.release.tag_name }} platform: linux/arm/v7 skip_integrations_tests: true