8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cd39f8 commit 81196e8Copy full SHA for 81196e8
.github/workflows/test.yaml
@@ -29,13 +29,15 @@ jobs:
29
python3 -m pip install pyinstaller
30
31
- name: Build package
32
- run: pyinstaller llama-server.spec
33
-
34
- - name: Look path
35
< 84DC span class="diff-text-marker">- run: |
36
- echo "${PWD}"
37
- ls ${{ github.workspace }}
+ run: pyinstaller --onefile llama-server.spec
38
+ - name: upload artifact
+ uses: actions/upload-artifact@v3
+ with:
+ name: llama-server
+ path: |
39
+ dist/*
40
+
41
- name: Login to a private Container registry
42
uses: docker/login-action@v3
43
with:
0 commit comments