(patch) Update the README #1

Merged
pfm merged 4 commits from initialize-actions into main 2024-03-24 04:02:38 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 5339b31b3a - Show all commits

View file

@ -26,7 +26,7 @@ jobs:
pre-commit run --all-files
- name: 'Prepare Versioned Build'
run: |
latest_git_tag="$(git describe --tags --abbrev=0 || 'No Tags')"
latest_git_tag="$(git describe --tags --abbrev=0 || echo 'No Tags')"
latest_commit_message="$(git show -s --format=%s HEAD)"
if [[ "$latest_commit_message" == *"(major)"* ]]; then
export GS_RELEASE_TYPE="major"

View file

@ -27,7 +27,7 @@ jobs:
pre-commit run --all-files
- name: 'Prepare Versioned Build'
run: |
latest_git_tag="$(git describe --tags --abbrev=0 || 'No Tags')"
latest_git_tag="$(git describe --tags --abbrev=0 || echo 'No Tags')"
latest_commit_message="$(git show -s --format=%s HEAD)"
if [[ "$latest_commit_message" == *"(major)"* ]]; then
export GS_RELEASE_TYPE="major"