Skip to content

Commit

Permalink
Merge pull request #28 from astrofrog/remove-leading-zeros-from-tag
Browse files Browse the repository at this point in the history
Remove leading zeros in tag to make tag consistent with PyPI release
  • Loading branch information
astrofrog authored Sep 12, 2024
2 parents e213548 + 80bb36f commit ebaa5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
ref: ${{ needs.update.outputs.new_sha }}
- name: Get tag name from date
id: tag_name
run: echo "version=v0.$(date +'%Y.%m.%d.%H.%M.%S')" > $GITHUB_OUTPUT
run: echo "version=v0.$(date +'%Y.%-m.%-d.%-H.%-M.%-S')" > $GITHUB_OUTPUT
- name: Check tag
run: echo ${{ steps.tag_name.outputs.version }}
- name: Create tag
Expand Down

0 comments on commit ebaa5f1

Please sign in to comment.