Skip to content

Commit eda4815

Browse files
committed
scripts: Add script to make new release
Signed-off-by: Povilas Kanapickas <[email protected]>
1 parent cbb0cab commit eda4815

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

scripts/make_release.sh

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
#!/usr/bin/env bash
2-
./scripts/uninstall.sh
3-
./scripts/clean_up.sh
4-
python3 setup.py register
5-
python3 setup.py sdist bdist_wheel
6-
twine upload dist/*
1+
#!/bin/bash
2+
3+
set -e
4+
5+
if [ $# -ne 1 ]; then
6+
echo "Usage: make_release.sh VERSION"
7+
exit 1
8+
fi
9+
10+
VERSION=$1
11+
12+
sed "s/__version__ = .*/__version__ = \"$VERSION\"/g" -i podman_compose.py
13+
git add podman_compose.py
14+
git commit -m "Release $VERSION"
15+
16+
git tag "v$VERSION" -m "v$VERSION" -s
17+
18+
git push ssh://github.com/containers/podman-compose main "v$VERSION"

scripts/make_release_upload.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
./scripts/uninstall.sh
3+
./scripts/clean_up.sh
4+
python3 setup.py register
5+
python3 setup.py sdist bdist_wheel
6+
twine upload dist/*

0 commit comments

Comments
 (0)