mirror of
https://github.com/docker/setup-buildx-action.git
synced 2024-11-14 16:15:42 +01:00
20 lines
570 B
TypeScript
20 lines
570 B
TypeScript
|
import * as exec from '@actions/exec';
|
||
|
|
||
|
export async function getRemoteSha(repo: string, ref: string): Promise<string> {
|
||
|
return await exec
|
||
|
.getExecOutput(`git`, ['ls-remote', repo, ref], {
|
||
|
ignoreReturnCode: true,
|
||
|
silent: true
|
||
|
})
|
||
|
.then(res => {
|
||
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
||
|
throw new Error(res.stderr);
|
||
|
}
|
||
|
const [rsha, rref] = res.stdout.trim().split(/[\s\t]/);
|
||
|
if (rsha.length == 0) {
|
||
|
throw new Error(`Cannot find remote ref for ${repo}#${ref}`);
|
||
|
}
|
||
|
return rsha;
|
||
|
});
|
||
|
}
|