Skip to content

Commit

Permalink
build.yml: Fix upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
snej authored Aug 29, 2024
1 parent 535485d commit 5d9944f
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,18 @@ jobs:
working-directory: ${{github.workspace}}/cblite/build
run: cmake --build . --config $env:BUILD_TYPE

- name: Save Binaries
- name: Save cblite binary
uses: actions/upload-artifact@v4
with:
name: "liteserv $RUNNER_OS"
path: |
${{github.workspace}}/cblite/build/cblite
${{github.workspace}}/cblite/build/liteserv
name: cblite-${{ matrix.os }}-${{ matrix.version }}
path: ${{github.workspace}}/cblite/build/cblite*
retention-days: 7
- name: Save liteserv binary
uses: actions/upload-artifact@v4
with:
name: liteserv-${{ matrix.os }}-${{ matrix.version }}
path: ${{github.workspace}}/cblite/build/liteserv*
retention-days: 7

#### BUILD CBL-LOG:

Expand Down Expand Up @@ -106,8 +111,9 @@ jobs:
working-directory: ${{github.workspace}}/cbl-log/build
run: cmake --build . --config $env:BUILD_TYPE

- name: Save Binaries
- name: Save cbl-log binary
uses: actions/upload-artifact@v4
with:
name: "cbl-log $RUNNER_OS"
path: ${{github.workspace}}/cbl-log/build/cbl-log
name: cbl-log-${{ matrix.os }}-${{ matrix.version }}
path: ${{github.workspace}}/cbl-log/build/cbl-log*
retention-days: 7

0 comments on commit 5d9944f

Please sign in to comment.