mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-03 22:55:43 +00:00 
			
		
		
		
	Fix formatting of 'build-args' parameter for docker build (#3105)
* Fix formatting of 'build-args' parameter for docker build * Remove quotes
This commit is contained in:
		
							
								
								
									
										4
									
								
								.github/workflows/docker.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.github/workflows/docker.yaml
									
									
									
									
										vendored
									
									
								
							@@ -67,7 +67,9 @@ jobs:
 | 
				
			|||||||
          push: true
 | 
					          push: true
 | 
				
			||||||
          target: production
 | 
					          target: production
 | 
				
			||||||
          tags: ${{ env.docker_tags }}
 | 
					          tags: ${{ env.docker_tags }}
 | 
				
			||||||
          build-args: commit_hash="${{ env.git_commit_hash }}", commit_date="${{ env.git_commit_date }}"
 | 
					          build-args: |
 | 
				
			||||||
 | 
					            commit_hash=${{ env.git_commit_hash }}
 | 
				
			||||||
 | 
					            commit_date=${{ env.git_commit_date }}
 | 
				
			||||||
      - name: Push to Stable Branch
 | 
					      - name: Push to Stable Branch
 | 
				
			||||||
        uses: ad-m/github-push-action@master
 | 
					        uses: ad-m/github-push-action@master
 | 
				
			||||||
        if: env.stable_release == 'true'
 | 
					        if: env.stable_release == 'true'
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user