From 8159fff98231f9d29fa6d10c743354ce2b92af32 Mon Sep 17 00:00:00 2001 From: ZJaume Date: Tue, 6 Aug 2024 13:59:08 +0000 Subject: [PATCH] GA: upload compiled models as artifacts --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea14d6d..f2b0dff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 + id: setup-python with: python-version: 3.8 - name: Build wheels @@ -60,6 +61,11 @@ jobs: with: name: wheels-linux-${{ matrix.platform.target }} path: dist + - name: Upload models + uses: actions/upload-artifact@v4 + with: + name: models-linux-${{ matrix.platform.target }} + path: ${{ steps.setup-python.outputs.python-path }}/heliport/*.bin sdist: runs-on: ubuntu-22.04