mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
Fixed incorrect image name when push to dockerhub
This commit is contained in:
parent
46a2032b9a
commit
b6579cd38e
1 changed files with 5 additions and 3 deletions
|
@ -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 }}
|
||||
tags: |
|
||||
altran1502/immich-microservices:${{ steps.previoustag.outputs.tag }}
|
Loading…
Add table
Reference in a new issue