Skip to content

Commit

Permalink
Update Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreyaschorge committed Nov 24, 2023
1 parent 823293c commit 13ba57e
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions .github/workflows/rdme-openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,17 @@ jobs:
- name: Check out repo πŸ“š
uses: actions/checkout@v3

# Install rdme globally
- name: Install rdme
run: npm install -g [email protected]

# Setting the working directory for all steps to './src'
- name: Run `openapi` command for v1 spec πŸš€
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./src
run: rdme openapi v1/spec.yaml --key=$README_API_KEY --id=65313d8d196216005b2ed13e
uses: readmeio/rdme@v8
with:
rdme: openapi src/v1/spec.yaml --key=${{ secrets.README_API_KEY }} --id=65313d8d196216005b2ed13e

- name: Run `openapi` command for v2 spec πŸš€
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./src
run: rdme openapi v2/spec.yaml --key=$README_API_KEY --id=653140896cad5a001321c86f
uses: readmeio/rdme@v8
with:
rdme: openapi src/v2/spec.yaml --key=${{ secrets.README_API_KEY }} --id=653140896cad5a001321c86f

- name: Run `openapi` command for v2 recommendation spec πŸš€
env:
README_API_KEY: ${{ secrets.README_API_KEY }}
working-directory: ./src
run: rdme openapi v2/recommendation/spec.yaml --key=$README_API_KEY --id=6537721ac0ccd40031482643
- name: Run `openapi` command πŸš€
uses: readmeio/rdme@v8
with:
rdme: openapi src/v2/recommendation/spec.yaml --key=${{ secrets.README_API_KEY }} --id=6537721ac0ccd40031482643

0 comments on commit 13ba57e

Please sign in to comment.