File tree Expand file tree Collapse file tree 7 files changed +24
-123
lines changed Expand file tree Collapse file tree 7 files changed +24
-123
lines changed Original file line number Diff line number Diff line change 3030          push : true 
3131          tags : dipperpinees/soundwave:${{ github.sha }} 
3232          build-args : | 
33-             GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} 
33+             GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }} 
34+ 
35+ #  Update manifest in another repository
36+       - name : Checkout manifest repository 
37+         uses : actions/checkout@v4 
38+         with :
39+           repository : ${{ secrets.MANIFEST_REPOSITORY }} 
40+           token : ${{ secrets.GITHUB_TOKEN }} 
41+           path : manifest-repo 
42+ 
43+       - name : Update manifest 
44+         run : | 
45+           cd manifest-repo 
46+           # Update the tag in soundwave/values.yaml with the new Docker image tag 
47+           sed -i "s|tag: \".*\"|tag: \"${{ github.sha }}\"|g" soundwave/values.yaml 
48+            
49+           # Configure git 
50+           git config user.name "GitHub Actions" 
51+           git config user.email "actions@github.com" 
52+            
53+           # Commit and push changes 
54+           git add soundwave/values.yaml 
55+           git commit -m "Update soundwave image tag to ${{ github.sha }}" 
56+           git push 
Load Diff This file was deleted. 
Load Diff This file was deleted. 
Load Diff This file was deleted. 
Load Diff This file was deleted. 
Load Diff This file was deleted. 
Load Diff This file was deleted. 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments