File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 77 description : ' Optional commit hash to build from'
88 required : false
99 default : ' '
10+ tag_name :
11+ description : ' Optional version tag (e.g. v1.57.1) for stable release file'
12+ required : false
13+ default : ' '
14+
1015
1116env :
1217 BRANCH_NAME : ${{ github.head_ref || github.ref_name }}
7782 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7883 run : |
7984 gh release upload rocm-rolling dist/koboldcpp-linux-x64-rocm --clobber
85+
86+ - name : Upload version pinned tagged binary
87+ if : ${{ inputs.tag_name != '' }}
88+ env :
89+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
90+ TAG_NAME : ${{ inputs.tag_name }}
91+ run : |
92+ cp dist/koboldcpp-linux-x64-rocm "dist/koboldcpp-linux-x64-rocm-${TAG_NAME}"
93+ gh release upload rocm-rolling "dist/koboldcpp-linux-x64-rocm-${TAG_NAME}" --clobber
You can’t perform that action at this time.
0 commit comments