Update .gitea/workflows/ci.yml

This commit is contained in:
Arlind
2025-06-20 15:38:05 +02:00
parent f40d26d967
commit cbc4f9436b

View File

@@ -112,7 +112,7 @@ jobs:
user_rows_file="${{ steps.find_skins.outputs.user_rows_file }}"
avatar_rows_file="${{ steps.find_skins.outputs.avatar_rows_file }}"
cat <<EOF > "$README_PATH"
cat <<-EOF > "$README_PATH"
# osu! Swiss Community Skin collection
Welcome to the osu! Swiss Community Skin collection, this repository archives and showcases Skins osc members use.
@@ -126,7 +126,7 @@ jobs:
## Skins
<details>
<summary>list instead of icons</summary>
<br>
<br />
<table border="1" cellpadding="5" cellspacing="0">
<thead>
<tr>
@@ -138,20 +138,23 @@ jobs:
</tr>
</thead>
<tbody>
EOF
EOF
sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- >> "$README_PATH"
sort -t '|' -k1,1n "$user_rows_file" | cut -d'|' -f2- >> "$README_PATH"
cat <<EOF >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
</tbody>
</table>
</details>
<p align="center">
EOF
EOF
sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- >> "$README_PATH"
echo "</p>" >> "$README_PATH"
sort -t '|' -k1,1n "$avatar_rows_file" | cut -d'|' -f2- >> "$README_PATH"
cat <<-EOF >> "$README_PATH"
</p>
EOF
rm -f "$user_rows_file" "$avatar_rows_file"