mirror of
				https://code.forgejo.org/actions/checkout.git
				synced 2025-11-04 06:39:11 +00:00 
			
		
		
		
	Merge 1d3fa26c9e into ff7abcd0c3
				
					
				
			This commit is contained in:
		
						commit
						21bf035c67
					
				
					 2 changed files with 4 additions and 2 deletions
				
			
		
							
								
								
									
										3
									
								
								dist/index.js
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/index.js
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -2114,7 +2114,8 @@ function testRef(git, ref, commit) {
 | 
			
		|||
        // refs/tags/
 | 
			
		||||
        else if (upperRef.startsWith('REFS/TAGS/')) {
 | 
			
		||||
            const tagName = ref.substring('refs/tags/'.length);
 | 
			
		||||
            return ((yield git.tagExists(tagName)) && commit === (yield git.revParse(ref)));
 | 
			
		||||
            return ((yield git.tagExists(tagName)) &&
 | 
			
		||||
                commit === (yield git.revParse(`${ref}^{commit}`)));
 | 
			
		||||
        }
 | 
			
		||||
        // Unexpected
 | 
			
		||||
        else {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -171,7 +171,8 @@ export async function testRef(
 | 
			
		|||
  else if (upperRef.startsWith('REFS/TAGS/')) {
 | 
			
		||||
    const tagName = ref.substring('refs/tags/'.length)
 | 
			
		||||
    return (
 | 
			
		||||
      (await git.tagExists(tagName)) && commit === (await git.revParse(ref))
 | 
			
		||||
      (await git.tagExists(tagName)) &&
 | 
			
		||||
      commit === (await git.revParse(`${ref}^{commit}`))
 | 
			
		||||
    )
 | 
			
		||||
  }
 | 
			
		||||
  // Unexpected
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue