Merge pull request #18602 from Budibase/feat/move-minio-to-s3 #2109
This file contains hidden or 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: ReadMe GitHub Action 🦉 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| rdme-openapi: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22.x | |
| cache: yarn | |
| - run: yarn --frozen-lockfile | |
| - name: Install OpenAPI pkg | |
| run: yarn global add rdme@8.6.6 | |
| - name: update specs | |
| run: cd packages/server && yarn specs && rdme openapi specs/openapi.yaml --key=${{ secrets.README_API_KEY }} --id=${{ secrets.README_OPENAPI_ID }} |