debugging
Some checks failed
/ Build and Test Library Snapshot (pull_request) Failing after 43s

This commit is contained in:
Pat Garrity 2024-03-22 22:38:04 -05:00
parent 52b285fccf
commit 58565c7523
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76

View file

@ -24,6 +24,7 @@ jobs:
pre-commit run --all-files pre-commit run --all-files
- name: 'Prepare Versioned Build' - name: 'Prepare Versioned Build'
run: | run: |
latest_git_tag="$(git describe --tags --abbrev=0)"
latest_commit_message="$(git show -s --format=%s HEAD)" latest_commit_message="$(git show -s --format=%s HEAD)"
if [[ "$latest_commit_message" == *"(major)"* ]]; then if [[ "$latest_commit_message" == *"(major)"* ]]; then
export GS_RELEASE_TYPE="major" export GS_RELEASE_TYPE="major"
@ -34,6 +35,7 @@ jobs:
else else
export GS_RELEASE_TYPE="patch" export GS_RELEASE_TYPE="patch"
fi fi
echo "Latest Git Tag: $latest_git_tag"
echo "Latest Commit: $latest_commit_message ($GS_RELEASE_TYPE) (SNAPSHOT)" echo "Latest Commit: $latest_commit_message ($GS_RELEASE_TYPE) (SNAPSHOT)"
sbtn -Dsnapshot=true -Drelease="$GS_RELEASE_TYPE" semVerInfo sbtn -Dsnapshot=true -Drelease="$GS_RELEASE_TYPE" semVerInfo
- name: 'Unit Tests and Code Coverage' - name: 'Unit Tests and Code Coverage'