Stamp source tarballs with the commit hash

pull/1026/head
Ryan Pavlik 2022-06-30 15:37:17 -05:00 committed by Paul Kahler
parent d6e1b23006
commit b5333608e9
1 changed files with 6 additions and 1 deletions

View File

@ -21,6 +21,11 @@ jobs:
dir_name="solvespace-${version}"
archive_name="${dir_name}.tar.xz"
archive_path="${HOME}/${archive_name}"
commit_sha="$GITHUB_SHA"
sed -e 's/^\(include(GetGitCommitHash)\)/#\1/' \
-e 's/^# \(set(GIT_COMMIT_HASH\).*/\1 '"$commit_sha"')/' \
-i CMakeLists.txt
echo "::set-output name=archive_name::${archive_name}"
echo "::set-output name=archive_path::${archive_path}"