Skip to content

Commit a643f59

Browse files
committed
Downgraded actions/upload-artifact@v4 to v3
The actions/upload-artifact@v4 is not yet supported in GHES See actions/upload-artifact#478
1 parent 831c7c5 commit a643f59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
source .venv/bin/activate
7777
python -m pytest -m slow --selectAlgorithm ${{ matrix.algorithm }} --saveFileName test_output_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv --SNR ${{ matrix.SNR }} --fitCount 300 --saveDurationFileName test_duration_${{ matrix.algorithm }}_${{ matrix.SNR }}.csv
7878
- name: Upload raw data
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v3
8080
with:
8181
name: Working_Data
8282
retention-days: 1
@@ -101,7 +101,7 @@ jobs:
101101
head -n 1 $(ls artifacts/Working_Data/test_duration_*.csv | head -n 1) > test_duration.csv
102102
tail -q -n +2 artifacts/Working_Data/test_duration_*.csv >> test_duration.csv
103103
- name: Upload merged artifacts
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v3
105105
with:
106106
name: Data
107107
path: |
@@ -133,7 +133,7 @@ jobs:
133133
- name: Generate figures
134134
run: Rscript --vanilla tests/IVIMmodels/unit_tests/analyze.r test_output.csv test_duration.csv
135135
- name: Upload figures
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v3
137137
if: always()
138138
with:
139139
name: Figures

0 commit comments

Comments
 (0)