Skip to content

Commit

Permalink
feat: CE-882 test (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrfalk authored Sep 26, 2024
1 parent df78f46 commit c005d5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pr-version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Fetch all tags
run: git fetch --tags --force

- name: Get Latest Tag
id: get_latest_tag
run: |
latest_tag=$(git describe --tags --abbrev=0)
latest_tag=$(git describe --tags --abbrev=0 || echo "v0.0.0")
echo "::set-output name=latest_tag::$latest_tag"
echo "Latest tag: $latest_tag"
Expand Down

0 comments on commit c005d5c

Please sign in to comment.