Setup working dir for git actions (#19) #56
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: ReadMe GitHub Action π¦ | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
rdme-openapi: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo π | |
uses: actions/checkout@v3 | |
# 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 | |
- 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 | |
- 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 |