From ef621a9bedc081f47ce41762a9ff8923305a3d9e Mon Sep 17 00:00:00 2001 From: liyp Date: Sat, 12 Apr 2025 14:27:15 +0800 Subject: [PATCH] =?UTF-8?q?Release=20v1.3.6=20=E4=B8=89=E4=B8=AAbin?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/AutoRelease.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/AutoRelease.yaml b/.gitea/workflows/AutoRelease.yaml index 85a6fe5..bf02263 100644 --- a/.gitea/workflows/AutoRelease.yaml +++ b/.gitea/workflows/AutoRelease.yaml @@ -70,16 +70,22 @@ jobs: git tag -a ${{ steps.extract_version.outputs.version }} -m "Release ${{ steps.extract_version.outputs.version }}" git push origin ${{ steps.extract_version.outputs.version }} - - name: 查找 .bin 文件 - id: find-bin-files + - name: 查找第1个.bin 文件 + id: find-bin-files-1 run: | BIN_FILES=$(find ./Bin -name "*.bin" -print0 | tr '\0' ',') BIN_FILES=${BIN_FILES%,} echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT echo "bin_files=$BIN_FILES" + - name: 查找第2个.bin 文件 + id: find-bin-files-2 + run: | BIN_FILES=$(find ./Bin1 -name "*.bin" -print0 | tr '\0' ',') BIN_FILES=${BIN_FILES%,} echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT + - name: 查找第3个.bin 文件 + id: find-bin-files-3 + run: | BIN_FILES=$(find ./Bin2 -name "*.bin" -print0 | tr '\0' ',') BIN_FILES=${BIN_FILES%,} echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT @@ -134,4 +140,7 @@ jobs: ${{ steps.get-commit-log.outputs.commit_log }} draft: false prerelease: false - files: ${{ steps.find-bin-files.outputs.bin_files }} + files: | + ${{ steps.find-bin-files-1.outputs.bin_files }} + ${{ steps.find-bin-files-2.outputs.bin_files }} + ${{ steps.find-bin-files-3.outputs.bin_files }}