Advice on using dynamic versioning with GitHub Actions #173
-
Hi there, I'm trying to integrate poetry-dynamic-versioning into my project - I'm finding it works locally but I'm unable to get it working as part of Actions. For example, locally I ran:
, and added
to pyproject.toml. To test I set the version=0.0.0 and ran
, I find I'm publishing version 0.0.0. Any ideas how to get this working? I did try adding Thanks, and apologies for the basic question - I'm new to this! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi! You just need to pass |
Beta Was this translation helpful? Give feedback.
Hi! You just need to pass
fetch-depth: 0
toactions/checkout@v3
. By default, it doesn't fetch the full history.