Skip to content

Commit

Permalink
download dets n embs from release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikel Broström committed Sep 17, 2024
1 parent ca80248 commit 5f798e7
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Download run.zip from GitHub release
uses: actions/download-artifact@v3
with:
# URL of the specific release asset
url: https://github.com/mikel-brostrom/boxmot/releases/download/v10.0.83/run.zip
path: run.zip

- name: Install requirements
run: |
if [[ "$OSTYPE" == "darwin"* ]]; then
Expand All @@ -57,8 +50,10 @@ jobs:
poetry lock --no-update
poetry install --with yolo
- name: Extract run.zip
run: unzip run.zip -d run
- name: Download run.zip from GitHub release and unzip
run: |
wget https://github.com/mikel-brostrom/boxmot/releases/download/v10.0.83/run.zip -O run.zip
unzip run.zip -d run
- name: Evaluation and Summarize Results
run: |
Expand Down

0 comments on commit 5f798e7

Please sign in to comment.