Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:

- name: Get the latest tag from development
id: get_tag
shell: bash
run: |
LATEST_TAG=$(git tag --sort=-creatordate | head -n 1)
if [ -z "$LATEST_TAG" ]; then
if [[ -z "$LATEST_TAG" ]]; then
echo "No tag found. Skipping release."
exit 1
fi
Expand Down
Loading