IOPS-1755 Use GH App Installation token for downloading libwebrtc assets #1146
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 Documentation | |
on: | |
push: | |
paths-ignore: | |
- "cmake/**" | |
pull_request: | |
paths: | |
- "docs/sphinx/**" | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Bump Version Number | |
shell: bash | |
if: github.event_name == 'push' | |
run: | | |
VERTEST="\#define\sLIBOBS_API_\w+_VER\s([0-9]{1,2})" | |
VER="" | |
MAJOR="" | |
while IFS= read -r l | |
do | |
if [[ $l =~ $VERTEST ]]; then | |
if [[ $VER = '' ]]; then MAJOR="${BASH_REMATCH[1]}"; else VER+="."; fi | |
VER+="${BASH_REMATCH[1]}" | |
fi | |
done < "libobs/obs-config.h" | |
SVER="version = '([0-9\.]+)'" | |
RVER="version = '$VER'" | |
SREL="release = '([0-9\.]+)'" | |
RREL="release = '$VER'" | |
SCOPY="copyright = '([A-Za-z0-9, ]+)'" | |
RCOPY="copyright = '2017-$(date +"%Y"), Hugh Bailey'" | |
sed -i -E -e "s/${SVER}/${RVER}/g" -e "s/${SREL}/${RREL}/g" -e "s/${SCOPY}/${RCOPY}/g" docs/sphinx/conf.py | |
- uses: ./.github/actions/sphinx-publish-action-1.2.0 | |
with: | |
sphinx_src: 'docs/sphinx' | |
build_only: True | |
target_branch: 'master' | |
target_path: '../home/_build' | |
pre_build_commands: 'pip install -Iv sphinx==5.1.1' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: OBS Studio Documentation (HTML) | |
path: | | |
${{ runner.temp }}/_github_home/_build | |
!${{ runner.temp }}/_github_home/_build/.doctrees |