diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..78f67d0 --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,21 @@ +version: 0.2 + +phases: + install: + runtime-versions: + python: "3.8" + commands: + - apt-get update + - apt-get -qq install pandoc -y + - pip install ipython sphinx sphinx_rtd_theme sphinxcontrib-bibtex sphinxcontrib-blockdiag sphinx-autobuild sphinx-sitemap nbsphinx -q + pre_build: + commands: + - python --version + - pip --version + build: + commands: + - make clean && make html + post_build: + commands: + - aws s3 sync build/html s3://rpa.oneoffcoder.com --quiet + - echo Build completed on `date`