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 f34fa5d commit c1f56e5Copy full SHA for c1f56e5
scripts/bd_to_prod.sh
@@ -34,10 +34,6 @@ echo "Creating new credential files"
34
mkdir -p ~/.aws
35
echo ${KEY} | gpg --batch -d --passphrase-fd 0 ${enc_location} > ~/.aws/credentials
36
37
-echo "Creating dist directory"
38
-pip install wheel --quiet
39
-python setup.py bdist_wheel
40
-
41
echo "Getting latest changes from git"
42
changes=$(git log $(git describe --tags --abbrev=0)..HEAD --oneline)
43
@@ -47,7 +43,8 @@ bumpversion patch --message "{current_version} → {new_version}. Changes: ${cha
47
push_tags
48
44
49
45
echo "Uploading to PyPi"
50
-pip install twine
46
+pip install twine wheel --quiet
+python setup.py bdist_wheel
51
twine upload dist/*
52
53
echo "Creating lumigo-python-tracer layer"
0 commit comments