CI: Update to new branch name for release

This commit is contained in:
tt2468
2022-05-13 18:44:53 -07:00
parent dd4971b1cc
commit f869f3df76
4 changed files with 32 additions and 32 deletions

View File

@ -29,6 +29,6 @@ Tested OS(s):
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] I have read the [Contributing Guidelines](https://github.com/obsproject/obs-websocket/wiki/Contributing-Guidelines).
- [ ] All commit messages are properly formatted and commits squashed where appropriate.
- [ ] My code is not on the `master` branch.
- [ ] My code is not on the `master` or a `release/*` branch.
- [ ] The code has been tested.
- [ ] I have included updates to all appropriate documentation.

View File

@ -1,27 +1,27 @@
name: 'Generate docs'
on:
push:
paths-ignore:
- 'docs/generated/**'
branches:
- master
jobs:
docs-build:
name: 'Generate docs [Ubuntu]'
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
env:
CHECKOUT_REF: ${{ github.ref }}
GH_TOKEN: ${{ github.token }}
IS_CI: "true"
steps:
- name: 'Checkout'
uses: actions/checkout@v2
with:
path: ${{ github.workspace }}/obs-websocket
- name: 'Generate docs'
working-directory: ${{ github.workspace }}/obs-websocket
run: |
./CI/generate-docs.sh
name: 'Generate docs'
on:
push:
paths-ignore:
- 'docs/generated/**'
branches:
- release/5.0.0
jobs:
docs-build:
name: 'Generate docs [Ubuntu]'
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
env:
CHECKOUT_REF: ${{ github.ref }}
GH_TOKEN: ${{ github.token }}
IS_CI: "true"
steps:
- name: 'Checkout'
uses: actions/checkout@v2
with:
path: ${{ github.workspace }}/obs-websocket
- name: 'Generate docs'
working-directory: ${{ github.workspace }}/obs-websocket
run: |
./CI/generate-docs.sh

View File

@ -3,10 +3,10 @@ name: Code Quality
on:
push:
branches:
- master
- release/5.0.0
pull_request:
branches:
- master
- release/5.0.0
jobs:
markdown:

View File

@ -5,7 +5,7 @@ on:
paths-ignore:
- 'docs/**'
branches:
- master
- release/5.0.0
tags:
- '[45].[0-9]+.[0-9]+*'
pull_request:
@ -13,7 +13,7 @@ on:
- 'docs/**'
- '**.md'
branches:
- master
- release/5.0.0
jobs:
windows: