From dd5486fba927cdf199f006fe44f8b409fec16165 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 1 Dec 2023 13:59:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BE=E5=BC=83=E8=87=AA=E5=8A=A8=E7=94=9F?= =?UTF-8?q?=E6=88=90openapi,=20=E8=BF=99=E6=A0=B7=E4=BC=9A=E4=BA=A7?= =?UTF-8?q?=E7=94=9F=E4=B8=80=E4=BA=9B=E9=97=AE=E9=A2=98.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linux.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8da2f0e2..58580e60 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,15 +1,14 @@ name: Linux on: [push, pull_request] -permissions: - contents: write + jobs: build: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v1 - name: 下载submodule源码 run: mv -f .gitmodules_github .gitmodules && git submodule sync && git submodule update --init @@ -34,19 +33,4 @@ 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 liyu7352@gmail.com - git add ./www/swagger/openapi.json - git commit -m "update openapi.json" - git push origin HEAD:master - ) -