We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef182c commit 538d6c8Copy full SHA for 538d6c8
.github/workflows/build.yml
@@ -77,6 +77,8 @@ jobs:
77
" | sed -e 's/^[[:space:]]\{4\}//' | python)
78
echo "version_bump_rule: '${version_bump_rule}'"
79
python -m poetry version "${version_bump_rule}"
80
+ python -m poetry build
81
+ python -m poetry install
82
export new_version=$(
83
python -m poetry run python -c 'from importlib.metadata import version; print(version("quaternionic"))'
84
)
@@ -97,7 +99,10 @@ jobs:
97
99
- name: Publish to PyPI
98
100
if: "!contains(github.event.head_commit.message, '[no pypi]')"
101
shell: bash -l {0}
- run: python -m poetry publish
102
+ run: |
103
104
105
+ python -m poetry publish
106
107
- name: Create release
108
if: "!contains(github.event.head_commit.message, '[no release]')"
0 commit comments