Updated whoa data video/audio assets for Bill & Ted's Excellent Adven… #19
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
# This GitHub Actions workflow syncs the OpenAPI file at openapi.yml to ReadMe | |
# It uses the `rdme` GitHub Action to do this: https://docs.readme.com/docs/rdme#github-actions-usage | |
# View the resulting docs here: https://wow.readme.io | |
name: Sync OpenAPI to ReadMe | |
# Run workflow for every push to the `main` branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo | |
uses: actions/checkout@v3 | |
- name: Sync openapi.yml to ReadMe | |
uses: readmeio/rdme@v8 | |
with: | |
rdme: openapi openapi.yml --key=${{ secrets.README_API_KEY }} --id=${{ secrets.README_API_ID }} |