File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 1010jobs :
1111  build :
1212    runs-on : ubuntu-latest 
13-     timeout-minutes : 10 
13+     timeout-minutes : 15 
1414
1515    steps :
1616      - name : 🧭 Checkout repository 
@@ -37,14 +37,15 @@ jobs:
3737            exit 1 
3838          fi 
3939
40- name : ✅ Force success signal 
41-         if : always() 
40+ name : 🧹 Clean temporary files (optional) 
4241        run : | 
43-           echo "🎯 Workflow finished, forcing success signal ." 
44-           echo "result=success" >> $GITHUB_OUTPUT  
42+           echo "🧽 Cleaning up temporary build files.. ." 
43+           rm -rf logs/tmp 2>/dev/null ||  true  
4544
46- name : 🟢 Mark workflow as passed 
47-         if : ${{ success() }} 
45+ name : ✅ Finalize and mark success 
4846        run : | 
49-           echo "✅  All steps passed — setting final status to success. " 
47+           echo "🎯  All steps executed successfully! " 
5048          exit 0 
49+ 
50+ #  This ensures GitHub marks as green even if warnings exist
51+     continue-on-error : false 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments