fixed setting presentingViewControllerKey to correct value, UI less l… #980
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: Update Configuration Documentation | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- fix/* | |
- feature/* | |
- milestone/* | |
jobs: | |
build: | |
runs-on: macos-latest | |
name: Update Configuration Documentation | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
# - name: Select Xcode | |
# run: sudo xcode-select -switch /Applications/Xcode_14.3.app | |
- name: Xcode version | |
run: /usr/bin/xcodebuild -version | |
- name: Install gomplate | |
run: brew install gomplate | |
- name: Run Generate Docs | |
run: ./generate_docs.sh | |
working-directory: ./tools/GenerateDocs/ | |
- name: Commit files | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Configuration documentation updated | |
file_pattern: doc/CONFIGURATION.json doc/configuration.adoc |