mirror of
https://github.com/awfufu/frp-pkgs.git
synced 2026-03-01 04:49:44 +08:00
fix: update repodata loop for universal structure
This commit is contained in:
8
.github/workflows/build_rpm.yml
vendored
8
.github/workflows/build_rpm.yml
vendored
@@ -170,9 +170,11 @@ jobs:
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y createrepo-c
|
||||
|
||||
for dir in repo/fc*/*; do
|
||||
echo "Processing $dir..."
|
||||
createrepo_c "$dir"
|
||||
for dir in repo/*; do
|
||||
if [ -d "$dir" ]; then
|
||||
echo "Processing $dir..."
|
||||
createrepo_c "$dir"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
|
||||
Reference in New Issue
Block a user