Skip to content

Commit d915394

Browse files
committed
updating github action for 2026-01-12 snapshot
1 parent c23d1ac commit d915394

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/generate-files.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,20 @@ jobs:
6363
6464
echo "snapshot_dir=snapshots_release" >> $GITHUB_ENV
6565
66+
- name: Prepare 2026-01-12 files for Release
67+
id: prepare_files_2026-01-12
68+
run: |
69+
mkdir -p snapshots_release/snapshot_2026-01-12
70+
echo "Copying snapshot data files for 2026-01-12..."
71+
find outputs/snapshots/2026-01-12 inputs/snapshots/2026-01-12 -type f -name "*.csv" \
72+
-exec cp {} snapshots_release/snapshot_2026-01-12/ \; \
73+
-exec echo "Copied: {}" \;
74+
for file in snapshots_release/snapshot_2026-01-12/*.csv; do
75+
mv "$file" "snapshots_release/2026-01-12_$(basename "$file")"
76+
done
77+
78+
echo "snapshot_dir=snapshots_release" >> $GITHUB_ENV
79+
6680
- name: Create Release
6781
uses: softprops/action-gh-release@v2
6882
with:

0 commit comments

Comments
 (0)