Skip to content

Commit

Permalink
add logic to download both cubes
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderDevisscher committed Jan 17, 2025
1 parent 7660bbf commit 2c38a94
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/cube_preprocessing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,23 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Download artifact
- name: Download be_alientaxa_cube artifact
uses: actions/download-artifact@v4
with:
name: be_alientaxa_cube.csv
path: ./cube_data/
run-id: ${{ steps.get-latest-run.outputs.run_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
merge-multiple: true

- name: Download be_classes_cube artifact
uses: actions/download-artifact@v4
with:
name: be_classes_cube.csv
path: ./cube_data/
run-id: ${{ steps.get-latest-run.outputs.run_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
merge-multiple: true

- name: cube_preprocessing
run: |
Expand Down

0 comments on commit 2c38a94

Please sign in to comment.