Skip to content

Commit 9f66fa8

Browse files
Update website.yml
1 parent 28b6e18 commit 9f66fa8

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/website.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,24 +42,32 @@ jobs:
4242
4343
# Action Figures artifact
4444
- name: 'Download artifact'
45-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
45+
#if: ${{ github.event.workflow_run.conclusion == 'success' }}
4646
uses: ./.github/actions/download-artifact
4747
with:
4848
name: 'Figures'
4949
# Action analysis data artifact
5050
- name: 'Download analysis data'
51-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
51+
#if: ${{ github.event.workflow_run.conclusion == 'success' }}
5252
uses: ./.github/actions/download-artifact
5353
with:
5454
name: 'Data'
5555

56+
- name: Debug artifact contents
57+
run: |
58+
echo "Current directory:"
59+
pwd
60+
echo "Files after artifact download:"
61+
ls -R
62+
5663
- name: Run the test that generates the plots report.
5764
env:
5865
PYTHONPATH: ${{ github.workspace }}
5966
run: |
6067
pytest tests/IVIMmodels/unit_tests/test_ivim_fit.py --json-report
6168
mv .report.json utilities/
6269
python utilities/report-summary.py .report.json report-summary.json
70+
6371
- name: 'Filter and compress results file.'
6472
run: python utilities/reduce_output_size.py Data/test_output.csv test_output.csv.gz
6573

@@ -68,7 +76,6 @@ jobs:
6876
mv test_output.csv.gz website/dashboard
6977
mv report-summary.json website/dashboard
7078
71-
7279
- name: Build documentation
7380
run: |
7481
mkdir docs/_static

0 commit comments

Comments
 (0)