Skip to content

Commit 0711fde

Browse files
committed
Update release script
1 parent 33e1a23 commit 0711fde

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

release.sh

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
# SPDX-FileCopyrightText: © 2020 Matt Williams <[email protected]>
3+
# SPDX-License-Identifier: MIT
4+
25
set -euo pipefail
36
IFS=$'\n\t'
47

@@ -26,6 +29,12 @@ if ! git diff --cached --quiet
2629
exit 1
2730
fi
2831

32+
if ! poetry build -q
33+
then
34+
echo "Poetry build failed:"
35+
poetry build
36+
fi
37+
2938
echo "Are you sure you want to release the next ${version_spec} version?"
3039
select yn in "Yes" "No"; do
3140
case $yn in
@@ -37,9 +46,8 @@ done
3746
# Bump version in pyproject.toml
3847
poetry version "${version_spec}"
3948
new_version=$(poetry version | awk '{print $2}')
40-
4149
git add pyproject.toml
50+
4251
git commit -m "Update to version ${new_version}"
4352
git tag "${new_version}"
44-
git push --all
45-
git push --tags
53+
git push --atomic --tags origin HEAD

0 commit comments

Comments
 (0)