We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e1a23 commit 0711fdeCopy full SHA for 0711fde
release.sh
@@ -1,4 +1,7 @@
1
#!/bin/bash
2
+# SPDX-FileCopyrightText: © 2020 Matt Williams <[email protected]>
3
+# SPDX-License-Identifier: MIT
4
+
5
set -euo pipefail
6
IFS=$'\n\t'
7
@@ -26,6 +29,12 @@ if ! git diff --cached --quiet
26
29
exit 1
27
30
fi
28
31
32
+if ! poetry build -q
33
+ then
34
+ echo "Poetry build failed:"
35
+ poetry build
36
+fi
37
38
echo "Are you sure you want to release the next ${version_spec} version?"
39
select yn in "Yes" "No"; do
40
case $yn in
@@ -37,9 +46,8 @@ done
46
# Bump version in pyproject.toml
47
poetry version "${version_spec}"
48
new_version=$(poetry version | awk '{print $2}')
-
41
49
git add pyproject.toml
50
42
51
git commit -m "Update to version ${new_version}"
43
52
git tag "${new_version}"
44
-git push --all
45
-git push --tags
53
+git push --atomic --tags origin HEAD
0 commit comments