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 0cf1ef7 commit 0d34af5Copy full SHA for 0d34af5
.github/workflows/build-riscv-native.yml
@@ -58,3 +58,20 @@ jobs:
58
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=BOTH
59
60
cmake --build build --config Release -j $(nproc)
61
+
62
+ - name: Determine tag name
63
+ id: tag
64
+ uses: ./.github/actions/get-tag-name
65
66
+ - name: Pack artifacts
67
+ id: pack_artifacts
68
+ run: |
69
+ cp LICENSE ./build/bin/
70
+ zip -r llama-${{ steps.tag.outputs.name }}-bin-debian-13-riscv64-native.zip ./build/bin/*
71
72
+ - name: Upload artifacts
73
+ uses: actions/upload-artifact@v4
74
+ with:
75
+ path: llama-${{ steps.tag.outputs.name }}-bin-debian-13-riscv64-native.zip
76
+ name: llama-bin-debian-13-riscv64-native.zip
77
0 commit comments