From b6579cd38e4a41427252770c26039b6fddebe64a Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Tue, 5 Apr 2022 11:43:09 -0500 Subject: [PATCH] Fixed incorrect image name when push to dockerhub --- .github/workflows/build_push_server_release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_push_server_release.yml b/.github/workflows/build_push_server_release.yml index d8d1426a459a5..f5a321455e59a 100644 --- a/.github/workflows/build_push_server_release.yml +++ b/.github/workflows/build_push_server_release.yml @@ -1,4 +1,4 @@ -name: Build Server - Release +name: Build and push Docker image - Release on: workflow_dispatch: @@ -41,7 +41,8 @@ jobs: file: ./server/Dockerfile platforms: linux/arm/v7,linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.previoustag.outputs.tag }} + tags: | + altran1502/immich-server:${{ steps.previoustag.outputs.tag }} build_and_push_microservice_release: runs-on: ubuntu-latest @@ -78,4 +79,5 @@ jobs: file: ./microservices/Dockerfile platforms: linux/arm/v7,linux/amd64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.previoustag.outputs.tag }} \ No newline at end of file + tags: | + altran1502/immich-microservices:${{ steps.previoustag.outputs.tag }} \ No newline at end of file