Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/tauri-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,14 @@ jobs:
# A fresh repo each night: older commits point at pruned assets.
mkdir -p site/repo
ostree --repo=site/repo init --mode=archive-z2
for src in arch-repos/*/; do
# download-artifact extracts a solo pattern match directly into the
# path; multiple matches land in per-artifact subdirectories.
if [ -e arch-repos/config ]; then
repos=(arch-repos/)
else
repos=(arch-repos/*/)
fi
for src in "${repos[@]}"; do
echo "Pulling $src"
ostree --repo=site/repo pull-local "$src"
done
Expand Down
Loading