This commit is contained in:
parent
e3dda45fa4
commit
ef621a9bed
@ -70,16 +70,22 @@ jobs:
|
|||||||
git tag -a ${{ steps.extract_version.outputs.version }} -m "Release ${{ steps.extract_version.outputs.version }}"
|
git tag -a ${{ steps.extract_version.outputs.version }} -m "Release ${{ steps.extract_version.outputs.version }}"
|
||||||
git push origin ${{ steps.extract_version.outputs.version }}
|
git push origin ${{ steps.extract_version.outputs.version }}
|
||||||
|
|
||||||
- name: 查找 .bin 文件
|
- name: 查找第1个.bin 文件
|
||||||
id: find-bin-files
|
id: find-bin-files-1
|
||||||
run: |
|
run: |
|
||||||
BIN_FILES=$(find ./Bin -name "*.bin" -print0 | tr '\0' ',')
|
BIN_FILES=$(find ./Bin -name "*.bin" -print0 | tr '\0' ',')
|
||||||
BIN_FILES=${BIN_FILES%,}
|
BIN_FILES=${BIN_FILES%,}
|
||||||
echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT
|
echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT
|
||||||
echo "bin_files=$BIN_FILES"
|
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=$(find ./Bin1 -name "*.bin" -print0 | tr '\0' ',')
|
||||||
BIN_FILES=${BIN_FILES%,}
|
BIN_FILES=${BIN_FILES%,}
|
||||||
echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT
|
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=$(find ./Bin2 -name "*.bin" -print0 | tr '\0' ',')
|
||||||
BIN_FILES=${BIN_FILES%,}
|
BIN_FILES=${BIN_FILES%,}
|
||||||
echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT
|
echo "bin_files=$BIN_FILES" >> $GITHUB_OUTPUT
|
||||||
@ -134,4 +140,7 @@ jobs:
|
|||||||
${{ steps.get-commit-log.outputs.commit_log }}
|
${{ steps.get-commit-log.outputs.commit_log }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: 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 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user