mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	build(docker): Use ghcr.io as build cache instead of gha (#1429)
* build(docker): Use github registry as build cache * build(docker): Only write to cache if not PR
This commit is contained in:
		
							parent
							
								
									8b73c2bf8a
								
							
						
					
					
						commit
						7e53e33e0f
					
				
							
								
								
									
										14
									
								
								.github/workflows/docker.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								.github/workflows/docker.yml
									
									
									
									
										vendored
									
									
								
							@ -78,6 +78,16 @@ jobs:
 | 
				
			|||||||
            type=ref,event=tag
 | 
					            type=ref,event=tag
 | 
				
			||||||
            type=raw,value=release,enable=${{ github.event_name == 'release' }}
 | 
					            type=raw,value=release,enable=${{ github.event_name == 'release' }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Determine build cache output
 | 
				
			||||||
 | 
					        id: cache-target
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          if [[ "${{ github.event_name }}" == "pull_request" ]]; then
 | 
				
			||||||
 | 
					            # Essentially just ignore the cache output (PR can't write to registry cache)
 | 
				
			||||||
 | 
					            echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
 | 
				
			||||||
 | 
					          else
 | 
				
			||||||
 | 
					            echo "cache-to=type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{ matrix.image }}" >> $GITHUB_OUTPUT
 | 
				
			||||||
 | 
					          fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Build and push image
 | 
					      - name: Build and push image
 | 
				
			||||||
        uses: docker/build-push-action@v3.3.0
 | 
					        uses: docker/build-push-action@v3.3.0
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
@ -85,6 +95,6 @@ jobs:
 | 
				
			|||||||
          platforms: linux/arm/v7,linux/amd64,linux/arm64
 | 
					          platforms: linux/arm/v7,linux/amd64,linux/arm64
 | 
				
			||||||
          # Skip pushing when PR from a fork
 | 
					          # Skip pushing when PR from a fork
 | 
				
			||||||
          push: ${{ !github.event.pull_request.head.repo.fork }}
 | 
					          push: ${{ !github.event.pull_request.head.repo.fork }}
 | 
				
			||||||
          cache-from: type=gha
 | 
					          cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/immich-build-cache:${{matrix.image}}
 | 
				
			||||||
          cache-to: type=gha,mode=max
 | 
					          cache-to: ${{ steps.cache-target.outputs.cache-to }}
 | 
				
			||||||
          tags: ${{ steps.metadata.outputs.tags }}
 | 
					          tags: ${{ steps.metadata.outputs.tags }}
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user