generated from hubverse-org/hubTemplate
-
Notifications
You must be signed in to change notification settings - Fork 12
40 lines (34 loc) · 1.25 KB
/
copy_rsv_data.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Copy RSV target-data
on:
workflow_dispatch:
schedule:
- cron: '30 8 * * 1'
jobs:
copy-files:
runs-on: ubuntu-latest
name: Copy Files
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
path: ./rsv-forecast-hub
- name: Copy files
run: |
mkdir -p ./rsv-forecast-hub/target-data/
chmod +w ./rsv-forecast-hub/target-data/
wget -O ./rsv-forecast-hub/target-data/rsvnet_hospitalization.csv https://raw.githubusercontent.com/midas-network/rsv-scenario-modeling-hub/main/target-data/rsvnet_hospitalization.csv
- name: Commit and push repository update
run: |
cd ./rsv-forecast-hub
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "Download truth data file from RSV repo"
git push
last_commit=$(git rev-parse HEAD)
echo "RSV-Net data updated";
else
echo "no updates";
fi