From f1278786f7e9e1a788d3161c0594f9d6e481f0e9 Mon Sep 17 00:00:00 2001 From: 3944Realms Date: Sun, 21 Sep 2025 15:33:07 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E6=B5=8B=E8=AF=95=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=20v5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-and-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index d9a69b2..94c6798 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -30,7 +30,7 @@ jobs: run: ./gradlew clean build - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: my-build path: '**/build/libs/*.jar' @@ -41,7 +41,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/build-') # 只有打 tag 才执行 release steps: - name: Download build artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: my-build path: ./build-artifacts