We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8797d7 commit 3b8e880Copy full SHA for 3b8e880
1 file changed
.github/workflows/build.yml
@@ -11,16 +11,11 @@ jobs:
11
steps:
12
- uses: actions/checkout@v4
13
14
- - name: Build and Pack
15
- run: |
16
- # 假设这里是你的打包命令,打包后的文件会放在 out/OIAPI.zip
17
- ./build.sh # 替换为你的实际打包命令
18
-
19
- name: Up Load Artifact
20
uses: actions/upload-artifact@v4
21
with:
22
name: OIAPI
23
- path: out/OIAPI.zip # 确保上传的路径是打包后的文件路径
+ path: src/ # 确保上传的路径是打包后的文件路径
24
25
- name: Extract version from commit message
26
id: extract_version
0 commit comments