@@ -314,7 +314,23 @@ func getCheckSumForTag(ctx context.Context, restIf interfaces.REST, owner, repo,
314
314
return "" , fmt .Errorf ("failed to join path: %w" , err )
315
315
}
316
316
317
- return doGetReference (ctx , restIf , path )
317
+ sha , otype , err := doGetReference (ctx , restIf , path )
318
+ if err != nil {
319
+ return "" , err
320
+ }
321
+
322
+ if otype == "commit" {
323
+ return sha , nil
324
+ }
325
+
326
+ // assume otype == "tag"
327
+ path , err = url .JoinPath ("repos" , owner , repo , "git" , "tags" , sha )
328
+ if err != nil {
329
+ return "" , fmt .Errorf ("failed to join path: %w" , err )
330
+ }
331
+
332
+ sha , _ , err = doGetReference (ctx , restIf , path )
333
+ return sha , err
318
334
}
319
335
320
336
func getCheckSumForBranch (ctx context.Context , restIf interfaces.REST , owner , repo , branch string ) (string , error ) {
@@ -323,7 +339,8 @@ func getCheckSumForBranch(ctx context.Context, restIf interfaces.REST, owner, re
323
339
return "" , fmt .Errorf ("failed to join path: %w" , err )
324
340
}
325
341
326
- return doGetReference (ctx , restIf , path )
342
+ sha , _ , err := doGetReference (ctx , restIf , path )
343
+ return sha , err
327
344
}
328
345
329
346
func excludeBranch (excludes []string , branch string ) bool {
@@ -337,10 +354,10 @@ func excludeBranch(excludes []string, branch string) bool {
337
354
return slices .Contains (excludes , branch )
338
355
}
339
356
340
- func doGetReference (ctx context.Context , restIf interfaces.REST , path string ) (string , error ) {
357
+ func doGetReference (ctx context.Context , restIf interfaces.REST , path string ) (string , string , error ) {
341
358
req , err := restIf .NewRequest (http .MethodGet , path , nil )
342
359
if err != nil {
343
- return "" , fmt .Errorf ("cannot create REST request: %w" , err )
360
+ return "" , "" , fmt .Errorf ("cannot create REST request: %w" , err )
344
361
}
345
362
346
363
resp , err := restIf .Do (ctx , req )
@@ -352,20 +369,20 @@ func doGetReference(ctx context.Context, restIf interfaces.REST, path string) (s
352
369
}
353
370
354
371
if err != nil && resp .StatusCode != http .StatusNotFound {
355
- return "" , fmt .Errorf ("failed to do API request: %w" , err )
372
+ return "" , "" , fmt .Errorf ("failed to do API request: %w" , err )
356
373
} else if resp .StatusCode == http .StatusNotFound {
357
374
// No error, but no tag found
358
- return "" , nil
375
+ return "" , "" , nil
359
376
}
360
377
361
378
var t github.Reference
362
379
err = json .NewDecoder (resp .Body ).Decode (& t )
363
380
if err != nil && strings .Contains (err .Error (), "cannot unmarshal array into Go value of type" ) {
364
381
// This is a branch, not a tag
365
- return "" , nil
382
+ return "" , "" , nil
366
383
} else if err != nil {
367
- return "" , fmt .Errorf ("canont decode response: %w" , err )
384
+ return "" , "" , fmt .Errorf ("canont decode response: %w" , err )
368
385
}
369
386
370
- return t .GetObject ().GetSHA (), nil
387
+ return t .GetObject ().GetSHA (), t . GetObject (). GetType (), nil
371
388
}
0 commit comments