Skip to content

Commit

Permalink
Merge pull request #35 from levigo/fix/JWT-4269_fetch_all
Browse files Browse the repository at this point in the history
fix(JWT-4269): fetch_all for the checkout step
  • Loading branch information
benjaminalbanese authored Jan 17, 2024
2 parents c668d5c + 2a9ea4d commit dd82eed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
fetch_tags: true

- name: Bump version and create tag
id: semantic_version
Expand All @@ -38,7 +40,7 @@ jobs:

- name: Verify and print new build number
run: |
if echo '${{ steps.semanticversion.outputs.new_tag }}' |grep -Eq '^v[0-9]+[.][0-9]+[.][0-9]+$'; then
if echo '${{ steps.semanticversion.outputs.new_tag }}' |grep -Eq '^${{ env.JWT_TAG_PREFIX }}1[.][0-9]+[.][0-9]+$'; then
echo Tag '${{ steps.semanticversion.outputs.new_tag }}', New version '${{ steps.semanticversion.outputs.new_version }}', Changelog '${{ steps.semanticversion.outputs.changelog }}'
else
echo 'unexpected tag format - aborting'
Expand Down

0 comments on commit dd82eed

Please sign in to comment.