This commit is contained in:
Robert Lechte 2020-08-28 13:59:50 +10:00
parent 13f3099df1
commit 6bcb6f2a33
2 changed files with 3 additions and 3 deletions

View File

@ -74,8 +74,8 @@ jobs:
python deploy/vbump.py
poetry build
poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD
git tag `echo /version`
git push origin `echo /version`
git tag `echo ~/version`
git push origin `echo ~/version`
workflows:

View File

@ -20,4 +20,4 @@ v_with_timestamp = ".".join(parts)
pyproject["tool"]["poetry"]["version"] = v_with_timestamp
p.write_text(dumps(pyproject, tpide()))
Path("/version").expanduser().write_text(v_with_timestamp)
Path("~/version").expanduser().write_text(v_with_timestamp)