build(deps): bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin from 6.0.0.5145 to 6.0.1.5171 #1967
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 API docs | |
on: | |
pull_request: | |
branches: [ develop ] | |
permissions: | |
pull-requests: read | |
jobs: | |
generate-api-docs: | |
runs-on: ubuntu-latest | |
container: | |
image: cfidentity/uaa-generate-docs | |
volumes: | |
- ${{ github.workspace }}:/root/uaa | |
options: --privileged --tty --interactive --shm-size=1G | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Generate https://docs.cloudfoundry.org/api/uaa/ | |
run: /root/uaa/scripts/generate-docs.sh | |
- name: Documentation Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Docs folder | |
path: /root/uaa/uaa/build/docs/version/ |