Workflow file for this run
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: Generate and Upload File to ReadMe | |
on: | |
push: | |
branches: | |
- main | |
- eb-readme-action | |
jobs: | |
generate_and_upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Run script to generate file | |
run: node ./scripts/formatBpDocs.js | |
- name: Upload to Readme | |
uses: readmeio/rdme@v8 | |
with: | |
rdme: openapi ./path-to-file.json --key=${{ secrets.README_API_KEY }} --id=API_DEFINITION_ID |