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 2ce13ef commit cbec53dCopy full SHA for cbec53d
azure-pipelines.yml
@@ -58,6 +58,9 @@ jobs:
58
pip install -r requirements.dev.txt
59
python -m build
60
python -m twine upload ./dist/* --non-interactive -u __token__ -p $(pypi_token)
61
+ pip install pyinstaller
62
+ pyinstaller --onefile ./croudtech_bootstrap_app/croudtech-bootstrap.py --clean
63
+ cp ./dist/croudtech-bootstrap $(Build.ArtifactStagingDirectory)/croudtech-bootstrap
64
- job: GithubRelease
65
dependsOn: build
66
displayName: GithubRelease
croudtech_bootstrap_app/croudtech-bootstrap.py
@@ -0,0 +1,10 @@
1
+# -*- mode: python ; coding: utf-8 -*-
2
+os.environ["AWS_DEFAULT_REGION"]="eu-west-2"
3
+
4
+from croudtech_bootstrap_app.cli import cli
5
+import os
6
7
+os.environ["LC_ALL"]="C.UTF-8"
8
+os.environ["LANG"]="C.UTF-8"
9
10
+cli()
0 commit comments