├── .github └── workflows │ └── deploy.yml ├── README.md ├── empty.txt └── python-service ├── build.py ├── deploy_service.py └── test.py /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalasearch/github-actions-tutorial/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalasearch/github-actions-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-service/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalasearch/github-actions-tutorial/HEAD/python-service/build.py -------------------------------------------------------------------------------- /python-service/deploy_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalasearch/github-actions-tutorial/HEAD/python-service/deploy_service.py -------------------------------------------------------------------------------- /python-service/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalasearch/github-actions-tutorial/HEAD/python-service/test.py --------------------------------------------------------------------------------