[GHA] Run win signing on linux self-hosted runner only

This commit is contained in:
aboyko
2024-04-02 20:03:57 -04:00
parent b5bf11acea
commit 0477995c61
2 changed files with 3 additions and 3 deletions

View File

@@ -30,8 +30,8 @@ rm -rf ./${destination_folder_name}
echo "Creating checksums sha-256 and md5 for ${file}"
shasum -a 256 $file > ${file}.sha256
md5 $file > ${file}.md5
md5sum $file > ${file}.md5
self_jar_file=${file%.*}.self-extracting.jar
echo "Creating checksums sha-256 and md5 for ${self_jar_file}"
shasum -a 256 $self_jar_file > ${self_jar_file}.sha256
md5 $self_jar_file > ${self_jar_file}.md5
md5sum $self_jar_file > ${self_jar_file}.md5