Skip to content

Commit

Permalink
make update docs part of build process (#362)
Browse files Browse the repository at this point in the history
* make update docs part of build process

* [AUTOMATED] Update: docs/pages/api/**/*.gen.yaml

* revert

---------

Co-authored-by: LukasJenicek <[email protected]>
  • Loading branch information
LukasJenicek and LukasJenicek authored Oct 16, 2024
1 parent 280d9b3 commit f943318
Show file tree
Hide file tree
Showing 4 changed files with 2,313 additions and 2,008 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Docs
on:
pull_request:
paths:
- "**/examples.json"
jobs:
build:
runs-on: ubuntu-latest
name: Merge request && response examples
steps:
- name: git-checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Install dependencies
run: |
npm install -g [email protected]
pnpm install
- name: Merge request and responses
run: |
# Read the changed files from the previous step
node libs/example_merger.js merge docs/pages/api/indexer/indexer.gen.yaml docs/pages/api/metadata/metadata.gen.yaml docs/pages/api/marketplace/marketplace.gen.yaml
- name: Push changes
uses: 0xsequence/actions/git-commit@master
env:
API_TOKEN_GITHUB: ${{ secrets.GH_TOKEN_GIT_COMMIT }}
with:
src: "docs/pages/api/**/*.gen.yaml"
branch: ${{ github.head_ref }}
## since openapi docs are generated and PR is automatically created there is no need to try create new one
pr_create: false
overwrite: true
Loading

0 comments on commit f943318

Please sign in to comment.