mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	Docker login only with branch from the repository (#370)
This commit is contained in:
		
							
								
								
									
										12
									
								
								.github/workflows/build_push_docker_staging.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/build_push_docker_staging.yml
									
									
									
									
										vendored
									
									
								
							| @@ -24,6 +24,7 @@ jobs: | |||||||
|         id: buildx |         id: buildx | ||||||
|         uses: docker/setup-buildx-action@v2.0.0 |         uses: docker/setup-buildx-action@v2.0.0 | ||||||
|       - name: Login to Docker Hub |       - name: Login to Docker Hub | ||||||
|  |         if: ${{ github.repository == 'alextran1502/immich' }} | ||||||
|         uses: docker/login-action@v2 |         uses: docker/login-action@v2 | ||||||
|         with: |         with: | ||||||
|           username: ${{ secrets.DOCKERHUB_USERNAME }} |           username: ${{ secrets.DOCKERHUB_USERNAME }} | ||||||
| @@ -34,7 +35,7 @@ jobs: | |||||||
|           context: ./server |           context: ./server | ||||||
|           file: ./server/Dockerfile |           file: ./server/Dockerfile | ||||||
|           platforms: linux/arm/v7,linux/amd64,linux/arm64 |           platforms: linux/arm/v7,linux/amd64,linux/arm64 | ||||||
|           push: ${{ github.event_name == 'pull_request' }} |           push: ${{ github.event_name == 'pull_request' && github.repository == 'alextran1502/immich' }} | ||||||
|           tags: | |           tags: | | ||||||
|             altran1502/immich-server:staging |             altran1502/immich-server:staging | ||||||
|  |  | ||||||
| @@ -52,6 +53,7 @@ jobs: | |||||||
|         id: buildx |         id: buildx | ||||||
|         uses: docker/setup-buildx-action@v2.0.0 |         uses: docker/setup-buildx-action@v2.0.0 | ||||||
|       - name: Login to Docker Hub |       - name: Login to Docker Hub | ||||||
|  |         if: ${{ github.repository == 'alextran1502/immich' }} | ||||||
|         uses: docker/login-action@v2 |         uses: docker/login-action@v2 | ||||||
|         with: |         with: | ||||||
|           username: ${{ secrets.DOCKERHUB_USERNAME }} |           username: ${{ secrets.DOCKERHUB_USERNAME }} | ||||||
| @@ -62,7 +64,7 @@ jobs: | |||||||
|           context: ./machine-learning |           context: ./machine-learning | ||||||
|           file: ./machine-learning/Dockerfile |           file: ./machine-learning/Dockerfile | ||||||
|           platforms: linux/arm/v7,linux/amd64 |           platforms: linux/arm/v7,linux/amd64 | ||||||
|           push: ${{ github.event_name == 'pull_request' }} |           push: ${{ github.event_name == 'pull_request' && github.repository == 'alextran1502/immich' }} | ||||||
|           tags: | |           tags: | | ||||||
|             altran1502/immich-machine-learning:staging |             altran1502/immich-machine-learning:staging | ||||||
|  |  | ||||||
| @@ -79,6 +81,7 @@ jobs: | |||||||
|         id: buildx |         id: buildx | ||||||
|         uses: docker/setup-buildx-action@v2.0.0 |         uses: docker/setup-buildx-action@v2.0.0 | ||||||
|       - name: Login to Docker Hub |       - name: Login to Docker Hub | ||||||
|  |         if: ${{ github.repository == 'alextran1502/immich' }} | ||||||
|         uses: docker/login-action@v2 |         uses: docker/login-action@v2 | ||||||
|         with: |         with: | ||||||
|           username: ${{ secrets.DOCKERHUB_USERNAME }} |           username: ${{ secrets.DOCKERHUB_USERNAME }} | ||||||
| @@ -90,7 +93,7 @@ jobs: | |||||||
|           file: ./web/Dockerfile |           file: ./web/Dockerfile | ||||||
|           platforms: linux/arm/v7,linux/amd64,linux/arm64 |           platforms: linux/arm/v7,linux/amd64,linux/arm64 | ||||||
|           target: prod |           target: prod | ||||||
|           push: ${{ github.event_name == 'pull_request' }} |           push: ${{ github.event_name == 'pull_request' && github.repository == 'alextran1502/immich' }} | ||||||
|           tags: | |           tags: | | ||||||
|             altran1502/immich-web:staging |             altran1502/immich-web:staging | ||||||
|  |  | ||||||
| @@ -107,6 +110,7 @@ jobs: | |||||||
|         id: buildx |         id: buildx | ||||||
|         uses: docker/setup-buildx-action@v2.0.0 |         uses: docker/setup-buildx-action@v2.0.0 | ||||||
|       - name: Login to Docker Hub |       - name: Login to Docker Hub | ||||||
|  |         if: ${{ github.repository == 'alextran1502/immich' }} | ||||||
|         uses: docker/login-action@v2 |         uses: docker/login-action@v2 | ||||||
|         with: |         with: | ||||||
|           username: ${{ secrets.DOCKERHUB_USERNAME }} |           username: ${{ secrets.DOCKERHUB_USERNAME }} | ||||||
| @@ -117,6 +121,6 @@ jobs: | |||||||
|           context: ./nginx |           context: ./nginx | ||||||
|           file: ./nginx/Dockerfile |           file: ./nginx/Dockerfile | ||||||
|           platforms: linux/arm/v7,linux/amd64,linux/arm64 |           platforms: linux/arm/v7,linux/amd64,linux/arm64 | ||||||
|           push: ${{ github.event_name == 'pull_request' }} |           push: ${{ github.event_name == 'pull_request' && github.repository == 'alextran1502/immich' }} | ||||||
|           tags: | |           tags: | | ||||||
|             altran1502/immich-proxy:staging |             altran1502/immich-proxy:staging | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user