forked from ZLMediaKit/ZLMediaKit
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
通过持续集成自动生成openapi相关文件 (ZLMediaKit#3042)
- Loading branch information
1 parent
34695ab
commit 644a333
Showing
2 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
name: Linux | ||
|
||
on: [push, pull_request] | ||
|
||
permissions: | ||
contents: write | ||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: 下载submodule源码 | ||
run: mv -f .gitmodules_github .gitmodules && git submodule sync && git submodule update --init | ||
|
@@ -33,4 +34,19 @@ jobs: | |
- name: 运行MediaServer | ||
run: pwd && cd release/linux/Debug && sudo ./MediaServer -d & | ||
|
||
- name: generate openapi | ||
if: github.ref == 'refs/heads/master' | ||
run: cd tools/openapi && python3 generates.py install-dependencies | ||
|
||
- name: Commit and push if ./www/swagger/openapi.json changed | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
git diff --exit-code ./www/swagger/openapi.json || ( | ||
git config user.name alexliyu7352 | ||
git config user.email [email protected] | ||
git add ./www/swagger/openapi.json | ||
git commit -m "update openapi.json" | ||
git push origin HEAD:master | ||
) | ||
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