We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d912dc commit 35274a7Copy full SHA for 35274a7
1 file changed
.github/workflows/build.yml
@@ -51,6 +51,15 @@ jobs:
51
- name: Build
52
run: cmake --build ${{ github.workspace }}/build --preset ${{ matrix.preset }} --config ${{ matrix.build_type }} -j 4
53
54
+ - name: Archive production artifacts
55
+ uses: actions/upload-artifact@v4
56
+ with:
57
+ name: gemma-${{ matrix.os }}-${{ matrix.preset }}-${{ matrix.build_type }}-${{ matrix.cc || 'default' }}
58
+ path: |
59
+ ${{ github.workspace }}/build/${{ matrix.build_type }}/gemma.exe
60
+ ${{ github.workspace }}/build/${{ matrix.build_type }}/libgemma.lib
61
+ ${{ github.workspace }}/build/gemma
62
+ ${{ github.workspace }}/build/libgemma.a
63
- name: Archive production artifacts
64
uses: actions/upload-artifact@v6
65
with:
0 commit comments