mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 11:55:51 +00:00 
			
		
		
		
	Bumps [wandalen/wretry.action](https://github.com/wandalen/wretry.action) from 3.7.2 to 3.7.3.
		
			
				
	
	
		
			36 lines
		
	
	
		
			868 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			868 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Upload report
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
  workflow_call:
 | 
						|
    secrets:
 | 
						|
      CODECOV_TOKEN:
 | 
						|
        required: true
 | 
						|
 | 
						|
jobs:
 | 
						|
  upload_report:
 | 
						|
    name: Upload report
 | 
						|
    runs-on: ubuntu-20.04
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
        with:
 | 
						|
          fetch-depth: 0
 | 
						|
 | 
						|
      - name: Download report artifact
 | 
						|
        uses: actions/download-artifact@v4
 | 
						|
        with:
 | 
						|
          name: coverage-report.xml
 | 
						|
          path: build
 | 
						|
 | 
						|
      - name: Upload coverage report
 | 
						|
        if: ${{ hashFiles('build/coverage_report.xml') != '' }}
 | 
						|
        uses: wandalen/wretry.action@v3.7.3
 | 
						|
        with:
 | 
						|
          action: codecov/codecov-action@v4
 | 
						|
          with: |
 | 
						|
            files: build/coverage_report.xml 
 | 
						|
            fail_ci_if_error: false
 | 
						|
            verbose: true
 | 
						|
            token: ${{ secrets.CODECOV_TOKEN }}
 | 
						|
          attempt_limit: 5
 | 
						|
          attempt_delay: 10000
 |