Skip to content

Commit 440ad19

Browse files
committed
chore: sync meta file
1 parent 9c59876 commit 440ad19

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/sync-to-private.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,21 @@ jobs:
7575
fi
7676
done
7777
78+
- name: Sync _meta.global.tsx into private repo
79+
run: |
80+
set -euo pipefail
81+
82+
src_file="_meta.global.tsx"
83+
dest_file="private-repo/src/app/_meta.global.tsx"
84+
85+
if [ -f "$src_file" ]; then
86+
echo "Syncing file $src_file → $dest_file"
87+
mkdir -p "$(dirname "$dest_file")"
88+
cp "$src_file" "$dest_file"
89+
else
90+
echo "Warning: $src_file does not exist, skipping..."
91+
fi
92+
7893
- name: Commit and push changes to private repo
7994
run: |
8095
set -euo pipefail

0 commit comments

Comments
 (0)