Skip to content

Commit 316c85a

Browse files
author
marci
committed
fix: correct YAML indentation in auto-release workflow
- Fix syntax error on line 42 with incorrect indentation - Ensure proper alignment for Git tag retrieval comment
1 parent 5ae1025 commit 316c85a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/auto-release-on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
CURRENT_VERSION=$(cat VERSION 2>/dev/null || echo "0.0.0")
4040
echo "Current version: $CURRENT_VERSION"
4141
42-
# Letzten Git-Tag abrufen
42+
# Letzten Git-Tag abrufen
4343
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
4444
LAST_TAG_VERSION=${LAST_TAG#v}
4545
echo "Last tag version: $LAST_TAG_VERSION"

0 commit comments

Comments
 (0)