1 parent 24d466f commit b633410Copy full SHA for b633410
1 file changed
.github/workflows/pipeline.yml
@@ -95,8 +95,17 @@ jobs:
95
if [ -d coordinator/data/history ]; then
96
cp -a coordinator/data/history/. work/history/ || true
97
fi
98
-
99
- missing=0for f in persona_incarico_ente__incarichi_nominativi_shard.csv \
+- name: Select relations sourceid: relations
+run: |
100
+if [ "${{ github.event.inputs.use_fixture_data }}" = "true" ]; then
101
+REL="coordinator/testdata/relations"
102
+echo "Using fixture data: $REL"
103
+else
104
+REL="explorer/data/relations"
105
+echo "Using live Explorer relations: $REL"
106
+fi
107
+missing=0
108
+for f in persona_incarico_ente__incarichi_nominativi_shard.csv \
109
awards__affidamenti_diretti.csv \
110
cig_ente__affidamenti_diretti.csv; do
111
if [ ! -f "$REL/$f" ]; then
0 commit comments