From 7d92cc69c14769c301b949ba018295d43062c5a1 Mon Sep 17 00:00:00 2001 From: lc6464 <64722907+lc6464@users.noreply.github.com> Date: Tue, 5 Dec 2023 18:05:58 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=80=E4=BA=9B=20.git?= =?UTF-8?q?hub=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/{bug---.md => bug-report.md} | 4 ++-- .github/ISSUE_TEMPLATE/{need-help.md => help-wanted.md} | 4 ++-- .github/ISSUE_TEMPLATE/idea.md | 2 +- .github/workflows/docker.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename .github/ISSUE_TEMPLATE/{bug---.md => bug-report.md} (88%) rename .github/ISSUE_TEMPLATE/{need-help.md => help-wanted.md} (88%) diff --git a/.github/ISSUE_TEMPLATE/bug---.md b/.github/ISSUE_TEMPLATE/bug-report.md similarity index 88% rename from .github/ISSUE_TEMPLATE/bug---.md rename to .github/ISSUE_TEMPLATE/bug-report.md index c8793b5c2..c08332d1f 100644 --- a/.github/ISSUE_TEMPLATE/bug---.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -3,7 +3,7 @@ name: Bug 反馈 about: 向我们提交一个 Bug 反馈。 title: "【BUG 反馈】" labels: bug -assignees: yuantuo666, lc6464 +assignees: yuantuo666 --- @@ -28,7 +28,7 @@ assignees: yuantuo666, lc6464 ## 您的设备信息 - 服务器系统信息: - 服务器 PHP 版本: - - 访问项目的浏览器版本(可提供 User-Agent 或浏览器名称+版本): + - 访问项目的浏览器版本(可提供 User-Agent 或浏览器名称+版本): ## 补充信息 diff --git a/.github/ISSUE_TEMPLATE/need-help.md b/.github/ISSUE_TEMPLATE/help-wanted.md similarity index 88% rename from .github/ISSUE_TEMPLATE/need-help.md rename to .github/ISSUE_TEMPLATE/help-wanted.md index c7f1ba002..6e11b5183 100644 --- a/.github/ISSUE_TEMPLATE/need-help.md +++ b/.github/ISSUE_TEMPLATE/help-wanted.md @@ -3,7 +3,7 @@ name: 寻求帮助 about: 向我们及广大网友寻求帮助。 title: "【寻求帮助】" labels: "help wanted" -assignees: yuantuo666, lc6464 +assignees: yuantuo666 --- @@ -28,7 +28,7 @@ assignees: yuantuo666, lc6464 ## 您的设备信息 - 服务器系统信息: - 服务器 PHP 版本: - - 访问项目的浏览器版本(可提供 User-Agent 或浏览器名称+版本): + - 访问项目的浏览器版本(可提供 User-Agent 或浏览器名称+版本): ## 补充信息 diff --git a/.github/ISSUE_TEMPLATE/idea.md b/.github/ISSUE_TEMPLATE/idea.md index d3afeb262..e74cc700a 100644 --- a/.github/ISSUE_TEMPLATE/idea.md +++ b/.github/ISSUE_TEMPLATE/idea.md @@ -3,7 +3,7 @@ name: 提交建议 about: 向我们提交一个建议。 title: "【建议】" labels: enhancement -assignees: yuantuo666, lc6464 +assignees: yuantuo666 --- diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 40903941c..199088558 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Parse version from tag name run: echo "VERSION=$(echo $GITHUB_REF | sed -n 's/refs\/tags\/v\(.*\)/\1/p')" >> $GITHUB_ENV From 1b305576a348c133c0e38332dee4a6d1dffac669 Mon Sep 17 00:00:00 2001 From: lc6464 <64722907+lc6464@users.noreply.github.com> Date: Wed, 6 Dec 2023 23:47:15 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=B8=B4=E6=97=B6=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/temp-test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/temp-test.yml diff --git a/.github/workflows/temp-test.yml b/.github/workflows/temp-test.yml new file mode 100644 index 000000000..9c7366a6c --- /dev/null +++ b/.github/workflows/temp-test.yml @@ -0,0 +1,27 @@ +name: Build Docker Image & Pack Source Code + +on: + push: + +# git tag -a v1.0.0 +# git push origin v1.0.0 + +env: + IMAGE_NAME: baiduwp-php + +jobs: + build_and_upload: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Parse version from tag name + run: echo "VERSION=$(echo $GITHUB_REF | sed -n 's/refs\/tags\/v\(.*\)/\1/p')" >> $GITHUB_ENV + + - name: Build Docker image + run: docker build . --file Dockerfile --tag ${{ env.IMAGE_NAME }} + + - name: Log into Docker Hub + run: echo "${{ secrets.DOCKER_ACCESS_TOKEN }}" | docker login -u yuantuo666 --password-stdin From 8565f42bd403ccfbf7d0a44b9add563a370eb068 Mon Sep 17 00:00:00 2001 From: Yuan_Tuo Date: Wed, 6 Dec 2023 23:53:42 +0800 Subject: [PATCH 3/3] Delete .github/workflows/temp-test.yml --- .github/workflows/temp-test.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/temp-test.yml diff --git a/.github/workflows/temp-test.yml b/.github/workflows/temp-test.yml deleted file mode 100644 index 9c7366a6c..000000000 --- a/.github/workflows/temp-test.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Build Docker Image & Pack Source Code - -on: - push: - -# git tag -a v1.0.0 -# git push origin v1.0.0 - -env: - IMAGE_NAME: baiduwp-php - -jobs: - build_and_upload: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Parse version from tag name - run: echo "VERSION=$(echo $GITHUB_REF | sed -n 's/refs\/tags\/v\(.*\)/\1/p')" >> $GITHUB_ENV - - - name: Build Docker image - run: docker build . --file Dockerfile --tag ${{ env.IMAGE_NAME }} - - - name: Log into Docker Hub - run: echo "${{ secrets.DOCKER_ACCESS_TOKEN }}" | docker login -u yuantuo666 --password-stdin