Skip to content

Commit 9581d51

Browse files
committed
try to prevent logo image files being removed by rsync
1 parent 80ae784 commit 9581d51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Push to development
4646
if: ${{ matrix.python-version == 3.12 }}
4747
run: |
48-
rsync -a --delete --exclude '.git/' target/ development/
48+
rsync -a --delete --exclude '.git/' --exclude 'img/' target/ development/
4949
cd development
5050
rm -rf build openMINDS.egg-info
5151
git config --global user.email "openminds@ebrains.eu"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Push to main
4646
if: ${{ matrix.python-version == 3.12 }}
4747
run: |
48-
rsync -a --delete --exclude '.git/' target/ main/
48+
rsync -a --delete --exclude '.git/' --exclude 'img/' target/ main/
4949
cd main
5050
rm -rf build openMINDS.egg-info
5151
git config --global user.email "openminds@ebrains.eu"

0 commit comments

Comments
 (0)