Merge pull request #1969 from smrealms/dependabot/composer/team-refle… #818
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: API Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy API Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Build API Docs | |
uses: ./.github/actions/api-docs | |
- name: Publish API Docs | |
uses: JamesIves/[email protected] | |
with: | |
ssh-key: ${{ secrets.API_DOCS_DEPLOY_KEY }} | |
repository-name: smrealms/api-docs | |
branch: main | |
folder: api-docs/build | |
target-folder: docs |