From 8c24ce7d93d95b0d8cec9d6dc9cd5f938c2a82c9 Mon Sep 17 00:00:00 2001 From: iorebuild Date: Thu, 10 Apr 2025 21:42:41 +0800 Subject: [PATCH] Release v1.0.6 --- .gitea/workflows/AutoRelease.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/AutoRelease.yaml b/.gitea/workflows/AutoRelease.yaml index fc46029..6209d10 100644 --- a/.gitea/workflows/AutoRelease.yaml +++ b/.gitea/workflows/AutoRelease.yaml @@ -75,11 +75,8 @@ jobs: - name: 查找 .bin 文件 id: find-bin-files - env: - # 这里的 your_folder_path 要替换为实际的文件夹路径 - your_folder_path: ./Bin run: | - BIN_FILES=$(find your_folder_path -name "test.bin" -print0 | tr '\0' ',') + BIN_FILES=$(find ./Bin -name "*.bin" -print0 | tr '\0' ',') BIN_FILES=${BIN_FILES%,} # 移除最后一个逗号 echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT @@ -94,3 +91,4 @@ jobs: body: "This is a release created by Gitea Release Action." draft: false prerelease: false + files: ${{ steps.find-bin-files.outputs.bin_files }}