Merge pull request #24 from lalithkota/develop #23
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: openapi publish on push | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
openapi-publish: | |
name: OpenAPI Generate and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get branch name (merge) | |
run: | | |
echo "BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's,.*/\(.*\),\1,')" >> $GITHUB_ENV | |
- name: Setup python for openapi generate | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install app | |
run: | | |
python -m pip install git+https://github.com/openg2p/openg2p-fastapi-common@develop\#subdirectory=openg2p-fastapi-common | |
python -m pip install git+https://github.com/openg2p/openg2p-fastapi-common@develop\#subdirectory=openg2p-fastapi-auth | |
python -m pip install . | |
- name: Generate openapi json | |
run: | | |
mkdir -p api-docs/generated | |
python3 main.py getOpenAPI api-docs/generated/openapi.json | |
if ! [ -z "$(git status --porcelain=v1 2>/dev/null -- api-docs/generated/openapi.json)" ]; then | |
shopt -s nocasematch | |
if [[ ${{ github.repository_owner }} == 'OpenG2P' ]]; then | |
export OPENAPI_CHANGED="true" | |
echo OPENAPI_CHANGED=$OPENAPI_CHANGED >> $GITHUB_ENV | |
fi | |
fi | |
- name: Commit Changes | |
uses: EndBug/add-and-commit@v7 | |
if: env.OPENAPI_CHANGED == 'true' | |
with: | |
default_author: github_actions | |
message: "Generated new openapi.json on push to ${{ github.event.inputs.git-ref }}" | |
add: "api-docs/generated/openapi.json" | |
- name: Setup nodejs | |
uses: actions/setup-node@v4 | |
if: env.OPENAPI_CHANGED == 'true' | |
with: | |
node-version: '18' | |
- name: Publish to stoplight | |
if: env.OPENAPI_CHANGED == 'true' | |
run: | | |
npx @stoplight/cli@5 push --ci-token ${{ secrets.STOPLIGHT_PROJECT_TOKEN }} --url https://openg2p.stoplight.io --branch ${{ env.BRANCH_NAME }} --directory api-docs/generated |