From 00e6ca3f7926f4a8b846507e9055bc7e79229bdd Mon Sep 17 00:00:00 2001 From: alexliyu7352 Date: Fri, 1 Dec 2023 20:20:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F=E4=B9=8B=E5=89=8D=E7=9A=84?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E9=9B=86=E6=88=90=20(#3071)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 这种形式容易引起fork仓库提交pr时的一些问题, 还原成原来的版本 --- .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 - ) -