From 1e0992e7a98bdc29c513e19786362aeb817cc093 Mon Sep 17 00:00:00 2001 From: Javier Cladellas Date: Wed, 30 Oct 2024 11:28:15 +0100 Subject: [PATCH] fix #103 --- .github/workflows/benchmark.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 3607d1d6..b5245794 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -102,6 +102,13 @@ jobs: run: | source .venv/bin/activate #ONLY IF NEEDED + - name: Upload configs + uses: actions/upload-artifact@v4 + with: + name: config-artifacts + path: | + ./tmp/benchmark_config.json + ./tmp/machines/ benchmark: needs: factory @@ -117,6 +124,11 @@ jobs: with: name: wheel-artifacts path: dist + - name: Download configs + uses: actions/download-artifact@v4 + with: + name: config-artifacts + path: ./tmp/ - name: Create Virtual Environment run: | python3 -m venv .venv