Merge pull request #18 from ongres/addconfhba #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: artifacts build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Git Submodule Update | |
run: | | |
git submodule update --remote --recursive | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: install python packages | |
run: | | |
cd artifact_builder | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: execute artifact_builder | |
run: python artifact_builder -D sql -O index.json -E postgres | |