Attempt to set up binaries in CI

This commit is contained in:
Ben 2024-04-22 14:39:40 +02:00
parent 53809129a5
commit e0dc36f269
No known key found for this signature in database
GPG Key ID: 541B9D8C9F1426A1
1 changed files with 10 additions and 0 deletions

View File

@ -78,6 +78,16 @@ jobs:
path: tests/integration/logs/
retention-days: 1
## Part 4 - Binaries ##
- name: Build and store binaries
run: make -j${ncpu}
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.cpu }}-${{ matrix.nim_version }}-nim-codex
path: build
retention-days: 1
status:
if: always()
needs: [build]