From b24fb109787524a62791e9414116dc7a61d6ed96 Mon Sep 17 00:00:00 2001 From: Erik Talboom Date: Mon, 19 Sep 2022 16:11:19 +0200 Subject: [PATCH] feat: or-1210 modify docker image names --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49ae30d99..3ad8f5b6e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -164,7 +164,10 @@ jobs: - name: Save Acm Api Image shell: bash - run: docker image save association-registry/acm-api -o ~/ar-acm-api-image.tar + run: docker image save $BUILD_DOCKER_REGISTRY/association-registry/acm-api:$SEMVER -o ~/ar-acm-api-image.tar + env: + BUILD_DOCKER_REGISTRY: ${{ secrets.VBR_BUILD_DOCKER_REGISTRY_TST }} + SEMVER: ${{ env.RELEASE_VERSION }} - name: Upload Acm Api artifact uses: actions/upload-artifact@v3 @@ -174,7 +177,10 @@ jobs: - name: Save Public Api Image shell: bash - run: docker image save association-registry/public-api -o ~/ar-public-api-image.tar + run: docker image save $BUILD_DOCKER_REGISTRY/association-registry/public-api:$SEMVER -o ~/ar-public-api-image.tar + env: + BUILD_DOCKER_REGISTRY: ${{ secrets.VBR_BUILD_DOCKER_REGISTRY_TST }} + SEMVER: ${{ env.RELEASE_VERSION }} - name: Upload Public Api artifact uses: actions/upload-artifact@v3