Skip to content

Commit 5a908a1

Browse files
committed
fix path
1 parent 9d0c1a0 commit 5a908a1

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/deploy-to-repos.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
./_preprocessMultiVersion.sh
2727
2828
- name: Update IG publisher
29-
working-directory: ./igs/imaging-r4
29+
working-directory: ./igs/r4
3030
run: |
3131
pwd
3232
chmod +x ./_updatePublisher.sh
3333
./_updatePublisher.sh -y
3434
3535
- name: Validate R4 IG
36-
working-directory: ./igs/imaging-r4
36+
working-directory: ./igs/r4
3737
run: |
3838
pwd
3939
./_genonce.sh
@@ -57,14 +57,14 @@ jobs:
5757
./_preprocessMultiVersion.sh
5858
5959
- name: Update IG publisher
60-
working-directory: ./igs/imaging-r5
60+
working-directory: ./igs/r5
6161
run: |
6262
pwd
6363
chmod +x ./_updatePublisher.sh
6464
./_updatePublisher.sh -y
6565
6666
- name: Validate R5 IG
67-
working-directory: ./igs/imaging-r5
67+
working-directory: ./igs/r5
6868
run: |
6969
pwd
7070
./_genonce.sh
@@ -120,11 +120,11 @@ jobs:
120120
# Remove all content from target repo except .git
121121
find ./r4-repo -mindepth 1 -maxdepth 1 ! -name '.git' -exec rm -rf {} +
122122
123-
# Copy imaging-r4 content to root of target repository
124-
cp -r ./igs/imaging-r4/* ./r4-repo/
123+
# Copy r4 content to root of target repository
124+
cp -r ./igs/r4/* ./r4-repo/
125125
126126
# Ensure hidden files are copied too (excluding .git)
127-
find ./igs/imaging-r4 -name ".*" -not -name ".git" -not -name "." -not -name ".." -exec cp -r {} ./r4-repo/ \; 2>/dev/null || true
127+
find ./igs/r4 -name ".*" -not -name ".git" -not -name "." -not -name ".." -exec cp -r {} ./r4-repo/ \; 2>/dev/null || true
128128
129129
- name: Commit and push R4 changes
130130
working-directory: ./r4-repo
@@ -197,11 +197,11 @@ jobs:
197197
# Remove all content from target repo except .git
198198
find ./r5-repo -mindepth 1 -maxdepth 1 ! -name '.git' -exec rm -rf {} +
199199
200-
# Copy imaging-r5 content to root of target repository
201-
cp -r ./igs/imaging-r5/* ./r5-repo/
200+
# Copy r5 content to root of target repository
201+
cp -r ./igs/r5/* ./r5-repo/
202202
203203
# Ensure hidden files are copied too (excluding .git)
204-
find ./igs/imaging-r5 -name ".*" -not -name ".git" -not -name "." -not -name ".." -exec cp -r {} ./r5-repo/ \; 2>/dev/null || true
204+
find ./igs/r5 -name ".*" -not -name ".git" -not -name "." -not -name ".." -exec cp -r {} ./r5-repo/ \; 2>/dev/null || true
205205
206206
- name: Commit and push R5 changes
207207
working-directory: ./r5-repo

0 commit comments

Comments
 (0)