This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
scisharp
/
LLamaSharp
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
17
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fixed copy path for binaries
tags/0.9.1
Martin Evans
1 year ago
parent
4d1e73b6d1
commit
5a4e6d8e07
2 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
.github/prepare_release.sh
+1
-1
.github/workflows/release-patch-trigger.yml
+ 1
- 1
.github/prepare_release.sh
View File
@@ -22,7 +22,7 @@ fi
mkdir ./temp;
mkdir ./temp;
mkdir ./temp/runtimes;
mkdir ./temp/runtimes;
cp ./LLama/runtimes ./temp
/runtimes
-R;
cp ./LLama/runtimes ./temp -R;
cp ./LLama/runtimes/build/*.* ./temp/;
cp ./LLama/runtimes/build/*.* ./temp/;
# get the current version
# get the current version
+ 1
- 1
.github/workflows/release-patch-trigger.yml
View File
@@ -8,7 +8,7 @@ on:
jobs:
jobs:
release-patch-trigger:
release-patch-trigger:
if:
contains(github.event.pull_request.labels.*.name, 'patch-release') && !contains(github.event.pull_request.labels.*.name, 'minor-release')
if: contains(github.event.pull_request.labels.*.name, 'patch-release') && !contains(github.event.pull_request.labels.*.name, 'minor-release')
runs-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
steps:
Write
Preview
Loading…
Cancel
Save