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
10 changes: 2 additions & 8 deletions .github/workflows/auto_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,9 @@ jobs:
echo "BUMP=Z" >> $GITHUB_OUTPUT
fi

- name: Get latest Git tag version
- name: 'Get Previous tag'
id: current_version
run: |
tag=$(git describe --tags `git rev-list --tags --max-count=1`)
if [[ -z "$tag" ]]; then
tag="0.0.0"
fi
echo "Latest tag: $tag"
echo "version=$tag" >> $GITHUB_OUTPUT
uses: "WyriHaximus/github-action-get-previous-tag@v1"

- name: Bump version
id: bump_version
Expand Down
Loading