From 29f0f18689ac1b641c9c5bd430b60be80937e9a1 Mon Sep 17 00:00:00 2001 From: tidex <46107860+tidexe@users.noreply.github.com> Date: Tue, 25 Feb 2025 22:41:54 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E7=A7=BB=E9=99=A4=20Release=20=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除了 .github/workflows/create-release.yml 文件,这意味着不再使用自动发布功能。这可能是为了简化 CI/CD 流程或改为使用其他发布方式。 --- .github/workflows/create-release.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml deleted file mode 100644 index e6f5b7a1..00000000 --- a/.github/workflows/create-release.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Release - -on: - workflow_dispatch: # 手动发布 - workflow_run: # 当 build 流程成功完成后自动触发 - workflows: ["Build Artifacts"] - types: [completed] - -jobs: - release: - runs-on: ubuntu-latest - - # 仅在Build工作流成功时运行 - if: github.event.workflow_run.conclusion == 'success' - - steps: - - name: Release - uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') \ No newline at end of file