diff --git a/.github/workflows/update-docs.yaml b/.github/workflows/update-docs.yaml deleted file mode 100644 index f8b0a95..0000000 --- a/.github/workflows/update-docs.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: Regenerate Endpoints docs on change - -on: - push: - paths: - - 'schemas/openapi.yml' - -permissions: - contents: write - -jobs: - build: - runs-on: ubuntu-latest - defaults: - run: - working-directory: docs/ - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - uses: actions/setup-node@v1 - with: - node-version: '16.x' - - run: npm i - - run: npm run generateEndpoints - - - name: Commit changes - run: | - git config --global user.email "no-reply@github.com" - git config --global user.name "GitHub Actions" - git commit -am "Update endpoint docs" || echo "No changes to commit" - git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Install swagger-cli - run: | - npm install -g swagger-cli - npm install -g openapi-format - - - name: Lint and Convert openapi.yml to openapi.json and commit changes - run: | - cd .. - npx openapi-format schemas/openapi.yml --output schemas/openapi.yml - swagger-cli bundle -r schemas/openapi.yml -o schemas/openapi.json -t json - - git config --global user.email "no-reply@github.com" - git config --global user.name "GitHub Actions" - git add schemas/openapi.yml - git add schemas/openapi.json - git commit -am "Lint OpenAPI schemas" || echo "No changes to commit" - git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}